aboutsummaryrefslogtreecommitdiff
path: root/src/0x2e.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/0x2e.c
parent5b126d345c2a13c1fc58e47ff906099fd416c743 (diff)
use unused variables
svn path=/trunk/externals/zexy/; revision=4815
Diffstat (limited to 'src/0x2e.c')
-rw-r--r--src/0x2e.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/0x2e.c b/src/0x2e.c
index bf91541..00b04ea 100644
--- a/src/0x2e.c
+++ b/src/0x2e.c
@@ -39,6 +39,7 @@ typedef struct _scalmul
static void scalmul_lst2(t_scalmul *x, t_symbol *s, int argc, t_atom *argv)
{
t_float *fp;
+ ZEXY_USEVAR(s);
if (x->n2 != argc) {
freebytes(x->buf2, x->n2 * sizeof(t_float));
x->n2 = argc;
@@ -53,6 +54,7 @@ static void scalmul_lst(t_scalmul *x, t_symbol *s, int argc, t_atom *argv)
t_float *fp;
t_atom *ap;
int n;
+ ZEXY_USEVAR(s);
if (argc){
if (x->n1 != argc) {
@@ -122,7 +124,7 @@ static void scalmul_free(t_scalmul *x)
static void *scalmul_new(t_symbol *s, int argc, t_atom *argv)
{
t_scalmul *x;
-
+ ZEXY_USEVAR(s);
if (argc-1){
x = (t_scalmul *)pd_new(scalmul_class);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("list"), gensym(""));