From 9d3f19040c026be68da53eb6611e9e3d83cff007 Mon Sep 17 00:00:00 2001 From: Sojourner Truth <jon.w.wilkes@gmail.com> Date: Fri, 22 Jul 2016 18:43:24 -0400 Subject: [PATCH] change void pointer return type to void in unauthorized --- externals/unauthorized/countund/countund.c | 4 ++-- externals/unauthorized/randomblock~/randomblock~.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/externals/unauthorized/countund/countund.c b/externals/unauthorized/countund/countund.c index 976f79c86..47b1694db 100644 --- a/externals/unauthorized/countund/countund.c +++ b/externals/unauthorized/countund/countund.c @@ -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 ) { diff --git a/externals/unauthorized/randomblock~/randomblock~.c b/externals/unauthorized/randomblock~/randomblock~.c index 26f5a5507..bac6ef25f 100644 --- a/externals/unauthorized/randomblock~/randomblock~.c +++ b/externals/unauthorized/randomblock~/randomblock~.c @@ -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" ); -- GitLab