diff options
author | Denys Vlasenko | 2010-06-06 21:53:09 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-06-06 21:53:09 +0200 |
commit | 19ced5c4253bc154aa499a72b6343e01245c92c0 (patch) | |
tree | c1c148612896e748749ce882ed25ad5ffd74418c /miscutils/crond.c | |
parent | 5f3303712ef483d270097cae4ba0a559b1056121 (diff) | |
download | busybox-19ced5c4253bc154aa499a72b6343e01245c92c0.zip busybox-19ced5c4253bc154aa499a72b6343e01245c92c0.tar.gz |
pipe_progress: make it independent of printf machinery
function old new delta
bb_putchar_stderr - 24 +24
ParseField 494 471 -23
progress_meter 212 188 -24
xargs_main 888 842 -46
pipe_progress_main 151 105 -46
------------------------------------------------------------------------------
(add/remove: 2/0 grow/shrink: 0/4 up/down: 24/-139) Total: -115 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/crond.c')
-rw-r--r-- | miscutils/crond.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c index e3714df..f511592 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c @@ -420,7 +420,7 @@ static void ParseField(char *user, char *ary, int modvalue, int off, int i; for (i = 0; i < modvalue; ++i) fprintf(stderr, "%d", (unsigned char)ary[i]); - fputc('\n', stderr); + bb_putchar_stderr('\n'); } } |