aboutsummaryrefslogtreecommitdiff
path: root/src/drip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drip.c')
-rw-r--r--src/drip.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/drip.c b/src/drip.c
index b8f86fe..855f9d8 100644
--- a/src/drip.c
+++ b/src/drip.c
@@ -108,9 +108,8 @@ static void drip_tick(t_drip *x)
}
}
-static void drip_list(t_drip *x, t_symbol *s, int argc, t_atom *argv)
+static void drip_list(t_drip *x, t_symbol* UNUSED(s), int argc, t_atom *argv)
{
- ZEXY_USEVAR(s);
if (x->flush && x->current) { /* do we want to flush */
drip_all(x, x->bufsize - (x->current - x->buffer), x->current);
}
@@ -170,10 +169,9 @@ static void drip_free(t_drip *x)
}
-static void *drip_new(t_symbol *s, int argc, t_atom *argv)
+static void *drip_new(t_symbol* UNUSED(s), int argc, t_atom *argv)
{
t_drip *x = (t_drip *)pd_new(drip_class);
- ZEXY_USEVAR(s);
if (argc>1) x->flush = 1;
else x->flush = 0;