diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2008-09-16 18:34:03 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2008-09-16 18:34:03 +0000 |
commit | a899ae0f82668cfd63799e5ecb49204cd11519cc (patch) | |
tree | dbf52d288883637a6a3a83a80ad8d8a8db271b07 | |
parent | 22f3ea4832da0993c11542f323804962e0c15ee6 (diff) |
Added a trailing zero to the arguments of the setup function for the "dump" message. Fixes a bug that prevented tabdump2 from working as advertised.
svn path=/trunk/externals/moonlib/; revision=10288
-rw-r--r-- | tabdump2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ void tabdump2_setup(void) 0, sizeof(t_tabdump), 0, A_DEFSYM, 0); class_addbang(tabdump_class, (t_method)tabdump_bang); class_addmethod(tabdump_class, (t_method)tabdump_dump,gensym("dump"), - A_FLOAT,A_FLOAT); + A_FLOAT,A_FLOAT,0); class_addmethod(tabdump_class, (t_method)tabdump_set, gensym("set"), A_SYMBOL, 0); |