Skip to content
Snippets Groups Projects
Commit 9d3f1904 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

change void pointer return type to void in unauthorized

parent 959cdd13
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ static void *countund_new(t_float flimit)
return(x);
}
static void *countund_limit(t_countund* x, t_float flimit)
static void countund_limit(t_countund* x, t_float flimit)
{
if ( flimit < 0 ) {
post( "countund~: wrong count limit" );
......@@ -84,7 +84,7 @@ static void *countund_limit(t_countund* x, t_float flimit)
}
}
static void *countund_bang(t_countund *x)
static void countund_bang(t_countund *x)
{
if ( x->x_up ) {
......
......@@ -70,7 +70,7 @@ static void *randomblock_new(t_float flimit)
return(x);
}
static void *randomblock_limit(t_randomblock* x, t_float flimit)
static void randomblock_limit(t_randomblock* x, t_float flimit)
{
if ( flimit < 0 || flimit > RAND_MAX ) {
post( "randomblock~: wrong random limit" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment