diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-15 20:41:13 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-02-15 20:41:13 +0000 |
commit | d6e8cff18b7895847b3a0890bd2a2b7c3015718e (patch) | |
tree | 2bb22496ecca31fd9a857371bd94dec1f9aeb0c7 /src/bytes2any.c | |
parent | fa91a07f8f6ced306f2a42ccfd4c30d478ee11a6 (diff) |
+ finished centralization of build logic
svn path=/trunk/externals/moocow/pdstring/; revision=10779
Diffstat (limited to 'src/bytes2any.c')
-rw-r--r-- | src/bytes2any.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytes2any.c b/src/bytes2any.c index 2d7ccb4..1ed38d1 100644 --- a/src/bytes2any.c +++ b/src/bytes2any.c @@ -175,7 +175,7 @@ static void *bytes2any_new(MOO_UNUSED t_symbol *sel, int argc, t_atom *argv) x->x_outlet_done = outlet_new(&x->x_obj, &s_bang); //-- debug - S2ADEBUG(post("bytes2any_new: x=%p, size=%d, eos=%d, binbuf=%p, text=%p", x, x->x_size, x->x_eos, x->x_binbuf, x->x_text)); + S2ADEBUG(post("bytes2any_new: x=%p, binbuf=%p, bytes.alloc=%d", x, x->x_eos, x->x_binbuf, x->x_bytes.b_alloc)); return (void *)x; } @@ -210,7 +210,7 @@ void bytes2any_setup_guts(void) 0); //-- alias -#ifndef PDSTRING_OBJECT_EXTERNALS +#ifndef WANT_OBJECT_EXTERNALS class_addcreator((t_newmethod)bytes2any_new, gensym("string2any"), A_GIMME, 0); #endif |