summaryrefslogtreecommitdiff
path: root/src/dist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dist.c')
-rw-r--r--src/dist.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dist.c b/src/dist.c
index 4f6acc3..d53bc4f 100644
--- a/src/dist.c
+++ b/src/dist.c
@@ -111,7 +111,6 @@ static void dist_anything(t_dist *x, t_symbol *s, int argc, t_atom *argv)
static void dist_send(t_dist *x, t_symbol *s, int argc, t_atom *argv)
{
int i;
- t_atom av[MAX_ARG]; /* the 'new' t_atom without first element */
t_int ac = argc - 1; /* the 'new' number of arguments */
if(ac > MAX_ARG)
@@ -119,11 +118,6 @@ static void dist_send(t_dist *x, t_symbol *s, int argc, t_atom *argv)
post("dist: too many arguments!");
return;
}
-
- for(i = 1; i < argc; i++)
- {
- av[i - 1] = argv[i]; /* just copy, don't care about types */
- }
/* send only argument-part to receivers */
for(i = 0; i <= x->x_rec; i++)
{