aboutsummaryrefslogtreecommitdiff
path: root/coreutils/du.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-12-12 23:17:26 +0000
committerEric Andersen <andersen@codepoet.org>2000-12-12 23:17:26 +0000
commitb12e506d8d0f3c8551bb1fed3234602f11b7b3fe (patch)
tree0e4307f1c539871e6032049a94243b1c1dac9a15 /coreutils/du.c
parent69a6b2d4aef2028a963751a2105d55a305d046ba (diff)
downloadbusybox-b12e506d8d0f3c8551bb1fed3234602f11b7b3fe.tar.gz
du.c error msg cleanup from Kent Robotti
Diffstat (limited to 'coreutils/du.c')
-rw-r--r--coreutils/du.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index be8fe5b11..a04dba6d3 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -60,7 +60,7 @@ static long du(char *filename)
int len;
if ((lstat(filename, &statbuf)) != 0) {
- perror_msg_and_die("%s:", filename);
+ perror_msg_and_die("%s", filename);
}
du_depth++;
@@ -165,7 +165,7 @@ int du_main(int argc, char **argv)
return status;
}
-/* $Id: du.c,v 1.31 2000/12/11 17:08:21 andersen Exp $ */
+/* $Id: du.c,v 1.32 2000/12/12 23:17:26 andersen Exp $ */
/*
Local Variables:
c-file-style: "linux"