aboutsummaryrefslogtreecommitdiff
path: root/du.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-12 23:17:26 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-12 23:17:26 +0000
commit5e037507ad611456f17bd9643974dae4cb49f802 (patch)
tree0e4307f1c539871e6032049a94243b1c1dac9a15 /du.c
parentf31430166365cccd539d4f16317d9722493106d3 (diff)
downloadbusybox-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/du.c b/du.c
index be8fe5b11..a04dba6d3 100644
--- a/du.c
+++ b/du.c
@@ -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/*
170Local Variables: 170Local Variables:
171c-file-style: "linux" 171c-file-style: "linux"