diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 21:53:09 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 21:53:09 +0200 |
commit | 19ced5c4253bc154aa499a72b6343e01245c92c0 (patch) | |
tree | c1c148612896e748749ce882ed25ad5ffd74418c /networking | |
parent | 5f3303712ef483d270097cae4ba0a559b1056121 (diff) | |
download | 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 'networking')
-rw-r--r-- | networking/tftp.c | 2 | ||||
-rw-r--r-- | networking/wget.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index d76f7ae5b..ab4e25967 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -119,7 +119,7 @@ static void progress_meter(int flag) if (flag == 0) { /* last call to progress_meter */ alarm(0); - fputc('\n', stderr); + bb_putchar_stderr('\n'); } else { if (flag == -1) { /* first call to progress_meter */ signal_SA_RESTART_empty_mask(SIGALRM, progress_meter); diff --git a/networking/wget.c b/networking/wget.c index 97f4a8f6e..f55b68a38 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -55,7 +55,7 @@ static void progress_meter(int flag) if (flag == 0) { /* last call to progress_meter */ alarm(0); - fputc('\n', stderr); + bb_putchar_stderr('\n'); G.transferred = 0; } else { if (flag == -1) { /* first call to progress_meter */ |