aboutsummaryrefslogtreecommitdiff
path: root/src/unpack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unpack.c')
-rw-r--r--src/unpack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unpack.c b/src/unpack.c
index 4614856..1cae3df 100644
--- a/src/unpack.c
+++ b/src/unpack.c
@@ -77,10 +77,10 @@ static void *zunpack_new(t_symbol*s, int argc, t_atom*argv)
void zunpack_setup(void)
{
- zunpack_class = class_new(gensym("unpack"),
+ zunpack_class = class_new(gensym("zexy/unpack"),
(t_newmethod)zunpack_new, (t_method)zunpack_free, sizeof(t_zunpack),
0, A_GIMME, 0);
- class_addcreator((t_newmethod)zunpack_new, gensym("zexy/unpack"), A_GIMME, 0);
+ class_addcreator((t_newmethod)zunpack_new, gensym("unpack"), A_GIMME, 0);
class_addbang(zunpack_class, zunpack_bang);
class_addlist(zunpack_class, zunpack_list);