aboutsummaryrefslogtreecommitdiff
path: root/src/repeat.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-04-05 11:27:26 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2006-04-05 11:27:26 +0000
commitcfc3bdbccea042a959bff9b255562cb92b863ca0 (patch)
treecf5c43d2ff430cdedc141e9c3c7957abde1c0af5 /src/repeat.c
parent5b126d345c2a13c1fc58e47ff906099fd416c743 (diff)
use unused variables
svn path=/trunk/externals/zexy/; revision=4815
Diffstat (limited to 'src/repeat.c')
-rw-r--r--src/repeat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/repeat.c b/src/repeat.c
index 04fa8bf..cfcaadd 100644
--- a/src/repeat.c
+++ b/src/repeat.c
@@ -43,6 +43,7 @@ static void repeat_anything(t_repeat *x, t_symbol *s, int argc, t_atom *argv)
static void *repeat_new(t_symbol*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);