diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-08-30 12:38:13 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-08-30 12:38:13 +0000 |
commit | bb13624d8c31d5e4b725c5df0d9d19d834dc4a7b (patch) | |
tree | 02859554adbabac3d12284863efd5e516780284f /miscutils | |
parent | 502907f5b33cd10cbe2a2eaffb65ca8d590d9436 (diff) | |
download | busybox-bb13624d8c31d5e4b725c5df0d9d19d834dc4a7b.tar.gz |
save a couple of bytes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c index 6e4534585..1231a93bd 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c @@ -105,7 +105,7 @@ pipe: else { if(i>n) - puts(""); + putchar('\n'); i=0; } count++; |