diff options
-rw-r--r-- | tcl_class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl_class.c b/tcl_class.c index 7de65b6..c0c7485 100644 --- a/tcl_class.c +++ b/tcl_class.c @@ -357,7 +357,7 @@ t_pd* tclpd_get_object_pd(const char* objectSequentialId) { t_binbuf* tclpd_get_object_binbuf(const char* objectSequentialId) { t_object* o = tclpd_get_object(objectSequentialId); - return &o->ob_binbuf; + return o->ob_binbuf; } t_glist* tclpd_get_glist(const char* objectSequentialId) { |