From fc89459187380d862daf249c95ed389e3fb6c0d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Mon, 3 Jun 2013 16:07:32 +0000 Subject: declare unused parameters as such rather than doing a dummy-usage svn path=/trunk/externals/zexy/; revision=17144 --- src/multiline~.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/multiline~.c') diff --git a/src/multiline~.c b/src/multiline~.c index 72eaee0..6dc7f0d 100644 --- a/src/multiline~.c +++ b/src/multiline~.c @@ -63,9 +63,8 @@ typedef struct _mline { /* the message thing */ -static void mline_list(t_mline *x, t_symbol *s, int argc, t_atom *argv) +static void mline_list(t_mline *x, t_symbol* UNUSED(s), int argc, t_atom *argv) { - ZEXY_USEVAR(s); if (argc>x->sigNUM)x->time=atom_getfloat(argv+argc-1); if (x->time <= 0) { @@ -199,11 +198,10 @@ static void mline_free(t_mline *x) } -static void *mline_new(t_symbol *s, int argc, t_atom *argv) +static void *mline_new(t_symbol* UNUSED(s), int argc, t_atom *argv) { t_mline *x = (t_mline *)pd_new(mline_class); int i; - ZEXY_USEVAR(s); if (!argc) { argc = 1; -- cgit v1.2.1