aboutsummaryrefslogtreecommitdiff
path: root/src/lister.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/lister.c
parent5b126d345c2a13c1fc58e47ff906099fd416c743 (diff)
use unused variables
svn path=/trunk/externals/zexy/; revision=4815
Diffstat (limited to 'src/lister.c')
-rw-r--r--src/lister.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lister.c b/src/lister.c
index 2bc7e27..b72e93a 100644
--- a/src/lister.c
+++ b/src/lister.c
@@ -28,6 +28,7 @@ static t_class *mypdlist_class;
static void mypdlist_secondlist(t_mypdlist *x, t_symbol *s, int argc, t_atom *argv)
{
+ ZEXY_USEVAR(s);
if (argc) {
if (x->x_n != argc) {
freebytes(x->x_list, x->x_n * sizeof(t_atom));
@@ -39,6 +40,7 @@ static void mypdlist_secondlist(t_mypdlist *x, t_symbol *s, int argc, t_atom *ar
static void mypdlist_list(t_mypdlist *x, t_symbol *s, int argc, t_atom *argv)
{
+ ZEXY_USEVAR(s);
if (x->x_n != argc) {
freebytes(x->x_list, x->x_n * sizeof(t_atom));
x->x_n = argc;
@@ -56,6 +58,7 @@ static void mypdlist_free(t_mypdlist *x)
static void *mypdlist_new(t_symbol *s, int argc, t_atom *argv)
{
t_mypdlist *x = (t_mypdlist *)pd_new(mypdlist_class);
+ ZEXY_USEVAR(s);
outlet_new(&x->x_obj, 0);
inlet_new(&x->x_obj, &x->x_obj.ob_pd, gensym("list"), gensym("lst2"));