diff options
Diffstat (limited to 'pd/src/d_misc.c')
-rw-r--r-- | pd/src/d_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pd/src/d_misc.c b/pd/src/d_misc.c index 444986ea..acb288b0 100644 --- a/pd/src/d_misc.c +++ b/pd/src/d_misc.c @@ -31,7 +31,7 @@ static t_int *print_perform(t_int *w) startpost("%s:", x->x_sym->s_name); for(i=0; i<n; i++) { if(i%8==0)endpost(); - startpost("%-8.5g", in[i]); + startpost("%.4g ", in[i]); } endpost(); x->x_count--; |