aboutsummaryrefslogtreecommitdiff
path: root/src/urn.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/urn.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/urn.c')
-rw-r--r--src/urn.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/urn.c b/src/urn.c
index ee45378..602fd13 100644
--- a/src/urn.c
+++ b/src/urn.c
@@ -104,11 +104,10 @@ static void urn_seed(t_urn *x, t_float f)
x->x_seed = f;
}
-static void *urn_new(t_symbol *s, int argc, t_atom *argv)
+static void *urn_new(t_symbol* UNUSED(s), int argc, t_atom *argv)
{
t_urn *x = (t_urn *)pd_new(urn_class);
t_float f=0.;
- ZEXY_USEVAR(s);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("float"), gensym(""));
x->x_floatout=outlet_new(&x->x_obj, gensym("float"));