diff options
Diffstat (limited to 'apps/plugins/pdbox/PDa/src/x_connective.c')
-rw-r--r-- | apps/plugins/pdbox/PDa/src/x_connective.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pdbox/PDa/src/x_connective.c b/apps/plugins/pdbox/PDa/src/x_connective.c index bd504b54a4..f5462db26b 100644 --- a/apps/plugins/pdbox/PDa/src/x_connective.c +++ b/apps/plugins/pdbox/PDa/src/x_connective.c | |||
@@ -647,7 +647,7 @@ static void *pack_new(t_symbol *s, int argc, t_atom *argv) | |||
647 | (void) s; | 647 | (void) s; |
648 | #endif | 648 | #endif |
649 | t_pack *x = (t_pack *)pd_new(pack_class); | 649 | t_pack *x = (t_pack *)pd_new(pack_class); |
650 | t_atom defarg[2], *ap, *vec, *vp; | 650 | t_atom defarg[2], *ap, /* *vec, */ *vp; |
651 | t_gpointer *gp; | 651 | t_gpointer *gp; |
652 | int nptr = 0; | 652 | int nptr = 0; |
653 | int i; | 653 | int i; |
@@ -660,7 +660,7 @@ static void *pack_new(t_symbol *s, int argc, t_atom *argv) | |||
660 | } | 660 | } |
661 | 661 | ||
662 | x->x_n = argc; | 662 | x->x_n = argc; |
663 | vec = x->x_vec = (t_atom *)getbytes(argc * sizeof(*x->x_vec)); | 663 | /* vec = */ x->x_vec = (t_atom *)getbytes(argc * sizeof(*x->x_vec)); |
664 | x->x_outvec = (t_atom *)getbytes(argc * sizeof(*x->x_outvec)); | 664 | x->x_outvec = (t_atom *)getbytes(argc * sizeof(*x->x_outvec)); |
665 | 665 | ||
666 | for (i = argc, ap = argv; i--; ap++) | 666 | for (i = argc, ap = argv; i--; ap++) |