aboutsummaryrefslogtreecommitdiff
path: root/coreutils/du.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-29 22:51:00 +0000
commita41fdf331af344ecd3ec230a072857ea197e1890 (patch)
tree70ffff0b7f48b35a70b8b04253abe9118ded6026 /coreutils/du.c
parente935602ff5d5a45be56585b8bad44194c3e837a3 (diff)
downloadbusybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.tar.gz
busybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.tar.bz2
busybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.zip
preparatory patch for -Wwrite-strings #1
Diffstat (limited to 'coreutils/du.c')
-rw-r--r--coreutils/du.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/du.c b/coreutils/du.c
index a1ca5b59b..a4b3c817e 100644
--- a/coreutils/du.c
+++ b/coreutils/du.c
@@ -222,7 +222,7 @@ int du_main(int argc, char **argv)
222 /* go through remaining args (if any) */ 222 /* go through remaining args (if any) */
223 argv += optind; 223 argv += optind;
224 if (optind >= argc) { 224 if (optind >= argc) {
225 *--argv = "."; 225 *--argv = (char*)".";
226 if (slink_depth == 1) { 226 if (slink_depth == 1) {
227 slink_depth = 0; 227 slink_depth = 0;
228 } 228 }