aboutsummaryrefslogtreecommitdiff
path: root/src/demultiplex~.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2013-06-03 16:07:32 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2013-06-03 16:07:32 +0000
commitfc89459187380d862daf249c95ed389e3fb6c0d3 (patch)
tree5dda59b117004068bba15c6c54d14046acced4b3 /src/demultiplex~.c
parente7f62cc177e6e3eb2e78ac5c6d5164782054d8ad (diff)
declare unused parameters as such
rather than doing a dummy-usage svn path=/trunk/externals/zexy/; revision=17144
Diffstat (limited to 'src/demultiplex~.c')
-rw-r--r--src/demultiplex~.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/demultiplex~.c b/src/demultiplex~.c
index 0b2e76c..7d5f0b3 100644
--- a/src/demultiplex~.c
+++ b/src/demultiplex~.c
@@ -82,12 +82,10 @@ static void demux_free(t_demux *x)
freebytes(x->out, x->n_out * sizeof(t_sample *));
}
-static void *demux_new(t_symbol *s, int argc, t_atom *argv)
+static void *demux_new(t_symbol* UNUSED(s), int argc, t_atom* UNUSED(argv))
{
t_demux *x = (t_demux *)pd_new(demux_class);
int i;
- ZEXY_USEVAR(s);
- ZEXY_USEVAR(argv);
if (!argc)argc=2;
x->n_out=argc;