diff options
author | N.N. <krzyszcz@users.sourceforge.net> | 2005-03-12 00:19:13 +0000 |
---|---|---|
committer | N.N. <krzyszcz@users.sourceforge.net> | 2005-03-12 00:19:13 +0000 |
commit | 3573488ef227bd7719eae892c72784cace95ffd4 (patch) | |
tree | 025299aeb3ad4574da705d836a396483cab229be /shared/toxy | |
parent | 1eef182b31a4cb2f55e26e7527469fc2902368a3 (diff) |
cyclone alpha54 and toxy alpha16 (see notes.txt for cyclone, toxy and shared)
svn path=/trunk/externals/miXed/; revision=2618
Diffstat (limited to 'shared/toxy')
-rw-r--r-- | shared/toxy/scriptlet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shared/toxy/scriptlet.c b/shared/toxy/scriptlet.c index 348d2c7..bf207c1 100644 --- a/shared/toxy/scriptlet.c +++ b/shared/toxy/scriptlet.c @@ -25,7 +25,8 @@ #define SCRIPTLET_INIDOTSIZE 256 #define SCRIPTLET_MARGIN 64 #define SCRIPTLET_DOTMARGIN 16 -#define SCRIPTLET_MAXPUSH 20000 /* cf SOCKSIZE in t_tkcmd.c, LATER revisit */ +/* cf SOCKSIZE in older versions of t_tkcmd.c, FIXME */ +#define SCRIPTLET_MAXPUSH 20000 enum { SCRIPTLET_CVOK, SCRIPTLET_CVUNKNOWN, SCRIPTLET_CVMISSING }; @@ -475,7 +476,7 @@ static int scriptlet_addfloat(t_scriptlet *sp, t_float f) char buf[64]; if (!sp->s_separator) sp->s_separator = ' '; - sprintf(buf, "%g ", f); + sprintf(buf, "%g", f); return (scriptlet_doappend(sp, buf)); } |