aboutsummaryrefslogtreecommitdiff
path: root/src/repeat.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/repeat.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/repeat.c')
-rw-r--r--src/repeat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/repeat.c b/src/repeat.c
index 31fbc50..de9e719 100644
--- a/src/repeat.c
+++ b/src/repeat.c
@@ -37,10 +37,9 @@ static void repeat_anything(t_repeat *x, t_symbol *s, int argc, t_atom *argv)
while(i--)outlet_anything(x->x_obj.ob_outlet, s, argc, argv);
}
-static void *repeat_new(t_symbol*s, int argc, t_atom*argv)
+static void *repeat_new(t_symbol* UNUSED(s), int argc, t_atom*argv)
{
t_repeat *x = (t_repeat *)pd_new(repeat_class);
- ZEXY_USEVAR(s);
if(argc){
if(A_FLOAT==argv->a_type)
x->fcount = atom_getfloat(argv);