From 3573488ef227bd7719eae892c72784cace95ffd4 Mon Sep 17 00:00:00 2001 From: "N.N." Date: Sat, 12 Mar 2005 00:19:13 +0000 Subject: cyclone alpha54 and toxy alpha16 (see notes.txt for cyclone, toxy and shared) svn path=/trunk/externals/miXed/; revision=2618 --- shared/toxy/scriptlet.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'shared/toxy') 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)); } -- cgit v1.2.1