aboutsummaryrefslogtreecommitdiff
path: root/src/drip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drip.c')
-rw-r--r--src/drip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drip.c b/src/drip.c
index 2679588..a5d7b55 100644
--- a/src/drip.c
+++ b/src/drip.c
@@ -109,6 +109,7 @@ static void drip_tick(t_drip *x)
static void drip_list(t_drip *x, t_symbol *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);
}
@@ -171,6 +172,7 @@ static void drip_free(t_drip *x)
static void *drip_new(t_symbol *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;