diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 22:51:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 22:51:25 +0000 |
commit | b6aae0f38194cd39960a898606ee65d4be93a895 (patch) | |
tree | b73c92aefaf614291a71d05e9d28ca68f4ef021b /findutils/xargs.c | |
parent | a41fdf331af344ecd3ec230a072857ea197e1890 (diff) | |
download | busybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.tar.gz busybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.tar.bz2 busybox-w32-b6aae0f38194cd39960a898606ee65d4be93a895.zip |
preparatory patch for -Wwrite-strings #2
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r-- | findutils/xargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c index 029d4077d..077b8847f 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
@@ -416,7 +416,7 @@ int xargs_main(int argc, char **argv) | |||
416 | argv += optind; | 416 | argv += optind; |
417 | if (!argc) { | 417 | if (!argc) { |
418 | /* default behavior is to echo all the filenames */ | 418 | /* default behavior is to echo all the filenames */ |
419 | *argv = "echo"; | 419 | *argv = (char*)"echo"; |
420 | argc++; | 420 | argc++; |
421 | } | 421 | } |
422 | 422 | ||