aboutsummaryrefslogtreecommitdiff
path: root/src/symbol2list.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/symbol2list.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/symbol2list.c')
-rw-r--r--src/symbol2list.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/symbol2list.c b/src/symbol2list.c
index 27c4c2a..5d7e74a 100644
--- a/src/symbol2list.c
+++ b/src/symbol2list.c
@@ -132,10 +132,9 @@ static void symbol2list_symbol(t_symbol2list *x, t_symbol *s){
x->s = s;
symbol2list_bang(x);
}
-static void *symbol2list_new(t_symbol *s, int argc, t_atom *argv)
+static void *symbol2list_new(t_symbol* UNUSED(s), int argc, t_atom *argv)
{
t_symbol2list *x = (t_symbol2list *)pd_new(symbol2list_class);
- ZEXY_USEVAR(s);
outlet_new(&x->x_obj, 0);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("symbol"), gensym(""));