aboutsummaryrefslogtreecommitdiff
path: root/src/iem16_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/iem16_table.c')
-rw-r--r--src/iem16_table.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/iem16_table.c b/src/iem16_table.c
index 96daf88..fd9d585 100644
--- a/src/iem16_table.c
+++ b/src/iem16_table.c
@@ -219,11 +219,11 @@ void table16_setup(void){
table16_class = class_new(gensym("table16"),
(t_newmethod)table16_new, (t_method)table16_free,
sizeof(t_table16), 0, A_DEFSYM, A_DEFFLOAT, 0);
- class_addmethod(table16_class, (t_method)table16_resize, gensym("resize"), A_DEFFLOAT);
- class_addmethod(table16_class, (t_method)table16_const, gensym("const"), A_DEFFLOAT);
- class_addmethod(table16_class, (t_method)table16_from, gensym("from"), A_GIMME);
+ class_addmethod(table16_class, (t_method)table16_resize, gensym("resize"), A_DEFFLOAT, 0);
+ class_addmethod(table16_class, (t_method)table16_const, gensym("const"), A_DEFFLOAT, 0);
+ class_addmethod(table16_class, (t_method)table16_from, gensym("from"), A_GIMME, 0);
class_addmethod(table16_class, (t_method)table16_read16, gensym("read16"), A_SYMBOL,
- A_DEFFLOAT, A_DEFSYM, A_NULL);
+ A_DEFFLOAT, A_DEFSYM, 0);
}