diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-08 04:21:50 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-08 04:21:50 +0200 |
commit | da0df47f244be581f48fd50909d6a68ceae327a9 (patch) | |
tree | 04cb9534d3d4482ab32e2f2f3bda065feeb09d06 /networking | |
parent | 64f2ba276cb98f43dbc4e420d48330830aec29a8 (diff) | |
download | busybox-da0df47f244be581f48fd50909d6a68ceae327a9.tar.gz |
wget: fix ndelay_on call; progress bar: small shrink
function old new delta
bb_progress_update 682 670 -12
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index f62339071..fb8e51317 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -455,7 +455,7 @@ static void NOINLINE retrieve_file_data(FILE *dfp, int output_fd) polldata.fd = fileno(dfp); polldata.events = POLLIN | POLLPRI; - ndelay(polldata.fd); + ndelay_on(polldata.fd); #endif progress_meter(PROGRESS_START); |