Index: apps/plugins/pdbox/PDa/src/d_dac.c =================================================================== --- apps/plugins/pdbox/PDa/src/d_dac.c (revision 21272) +++ apps/plugins/pdbox/PDa/src/d_dac.c (working copy) @@ -22,8 +22,17 @@ static void *dac_new(t_symbol *s, int argc, t_atom *argv) { t_dac *x = (t_dac *)pd_new(dac_class); +#ifdef ROCKBOX + t_atom defarg[2]; +#else t_atom defarg[2], *ap; +#endif int i; + +#ifdef ROCKBOX + (void) s; +#endif + if (!argc) { argv = defarg; @@ -83,8 +92,17 @@ static void *adc_new(t_symbol *s, int argc, t_atom *argv) { t_adc *x = (t_adc *)pd_new(adc_class); +#ifdef ROCKBOX + t_atom defarg[2]; +#else t_atom defarg[2], *ap; +#endif int i; + +#ifdef ROCKBOX + (void) s; +#endif + if (!argc) { argv = defarg;