diff options
author | mescalinum <mescalinum@users.sourceforge.net> | 2011-10-13 22:54:42 +0000 |
---|---|---|
committer | mescalinum <mescalinum@users.sourceforge.net> | 2011-10-13 22:54:42 +0000 |
commit | afbebe11d3a1413690f2a547a5d0a4611763ab2f (patch) | |
tree | d728576bb7badbbf956614e3bc0e6f0ce90a39d6 | |
parent | fac4cb9db5f0587d61e4eec7f789c72230f31c9d (diff) |
solved some binbuf issues
svn path=/trunk/externals/loaders/tclpd/; revision=15590
-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) { |