summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/PDa/src/x_interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pdbox/PDa/src/x_interface.c')
-rw-r--r--apps/plugins/pdbox/PDa/src/x_interface.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/pdbox/PDa/src/x_interface.c b/apps/plugins/pdbox/PDa/src/x_interface.c
index 227ca0f4fd..9939c6bdf0 100644
--- a/apps/plugins/pdbox/PDa/src/x_interface.c
+++ b/apps/plugins/pdbox/PDa/src/x_interface.c
@@ -30,6 +30,9 @@ static void print_bang(t_print *x)
30 30
31static void print_pointer(t_print *x, t_gpointer *gp) 31static void print_pointer(t_print *x, t_gpointer *gp)
32{ 32{
33#ifdef ROCKBOX
34 (void) gp;
35#endif
33 post("%s(gpointer)", x->x_sym->s_name); 36 post("%s(gpointer)", x->x_sym->s_name);
34} 37}
35 38
@@ -40,8 +43,12 @@ static void print_float(t_print *x, t_float f)
40 43
41static void print_list(t_print *x, t_symbol *s, int argc, t_atom *argv) 44static void print_list(t_print *x, t_symbol *s, int argc, t_atom *argv)
42{ 45{
46#ifdef ROCKBOX
47 (void) s;
48#else
43 int i; 49 int i;
44 char buf[80]; 50 char buf[80];
51#endif
45 if (argc && argv->a_type != A_SYMBOL) startpost("%s:", x->x_sym->s_name); 52 if (argc && argv->a_type != A_SYMBOL) startpost("%s:", x->x_sym->s_name);
46 else startpost("%s%s", x->x_sym->s_name, 53 else startpost("%s%s", x->x_sym->s_name,
47 (argc > 1 ? s_list.s_name : (argc == 1 ? s_symbol.s_name : 54 (argc > 1 ? s_list.s_name : (argc == 1 ? s_symbol.s_name :
@@ -52,8 +59,10 @@ static void print_list(t_print *x, t_symbol *s, int argc, t_atom *argv)
52 59
53static void print_anything(t_print *x, t_symbol *s, int argc, t_atom *argv) 60static void print_anything(t_print *x, t_symbol *s, int argc, t_atom *argv)
54{ 61{
62#ifndef ROCKBOX
55 int i; 63 int i;
56 char buf[80]; 64 char buf[80];
65#endif
57 startpost("%s%s", x->x_sym->s_name, s->s_name); 66 startpost("%s%s", x->x_sym->s_name, s->s_name);
58 postatom(argc, argv); 67 postatom(argc, argv);
59 endpost(); 68 endpost();