diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-12 23:17:26 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-12-12 23:17:26 +0000 |
commit | 5e037507ad611456f17bd9643974dae4cb49f802 (patch) | |
tree | 0e4307f1c539871e6032049a94243b1c1dac9a15 /du.c | |
parent | f31430166365cccd539d4f16317d9722493106d3 (diff) | |
download | busybox-w32-5e037507ad611456f17bd9643974dae4cb49f802.tar.gz busybox-w32-5e037507ad611456f17bd9643974dae4cb49f802.tar.bz2 busybox-w32-5e037507ad611456f17bd9643974dae4cb49f802.zip |
du.c error msg cleanup from Kent Robotti
git-svn-id: svn://busybox.net/trunk/busybox@1436 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'du.c')
-rw-r--r-- | du.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,7 +60,7 @@ static long du(char *filename) | |||
60 | int len; | 60 | int len; |
61 | 61 | ||
62 | if ((lstat(filename, &statbuf)) != 0) { | 62 | if ((lstat(filename, &statbuf)) != 0) { |
63 | perror_msg_and_die("%s:", filename); | 63 | perror_msg_and_die("%s", filename); |
64 | } | 64 | } |
65 | 65 | ||
66 | du_depth++; | 66 | du_depth++; |
@@ -165,7 +165,7 @@ int du_main(int argc, char **argv) | |||
165 | return status; | 165 | return status; |
166 | } | 166 | } |
167 | 167 | ||
168 | /* $Id: du.c,v 1.31 2000/12/11 17:08:21 andersen Exp $ */ | 168 | /* $Id: du.c,v 1.32 2000/12/12 23:17:26 andersen Exp $ */ |
169 | /* | 169 | /* |
170 | Local Variables: | 170 | Local Variables: |
171 | c-file-style: "linux" | 171 | c-file-style: "linux" |