diff options
author | Matt Kraai | 2000-12-18 03:08:29 +0000 |
---|---|---|
committer | Matt Kraai | 2000-12-18 03:08:29 +0000 |
commit | 0dab82997777bffb95d01d68e1628ee79207a03d (patch) | |
tree | cd56722ced55fd4b08049a0717cbbb9df5e9113f /networking/wget.c | |
parent | bfa7967c4a18c9a7addbe853cf9f736ac34b4e5b (diff) | |
download | busybox-0dab82997777bffb95d01d68e1628ee79207a03d.zip busybox-0dab82997777bffb95d01d68e1628ee79207a03d.tar.gz |
Add missing newlines to error messages.
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c index 50b9aee..dbc2836 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -159,7 +159,7 @@ int wget_main(int argc, char **argv) */ if (do_continue) { if (fstat(fileno(output), &sbuf) < 0) - error_msg_and_die("fstat()"); + perror_msg_and_die("fstat()"); if (sbuf.st_size > 0) beg_range = sbuf.st_size; else @@ -514,7 +514,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.13 2000/12/09 16:55:35 andersen Exp $ + * $Id: wget.c,v 1.14 2000/12/18 03:08:29 kraai Exp $ */ |