aboutsummaryrefslogtreecommitdiff
path: root/src/repack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/repack.c')
-rw-r--r--src/repack.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/repack.c b/src/repack.c
index 1d15863..044d369 100644
--- a/src/repack.c
+++ b/src/repack.c
@@ -106,11 +106,10 @@ static void repack_pointer(t_repack *x, t_gpointer *p)
x->current++;
if (x->current >= x->outputsize) repack_bang(x);
}
-static void repack_list(t_repack *x, t_symbol *s, int argc, t_atom *argv)
+static void repack_list(t_repack *x, t_symbol* UNUSED(s), int argc, t_atom *argv)
{
int remain = x->outputsize - x->current;
t_atom *ap = argv;
- ZEXY_USEVAR(s);
if (argc >= remain) {
memcpy(x->buffer+x->current, ap, remain * sizeof(t_atom));