diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 22:51:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 22:51:00 +0000 |
commit | a41fdf331af344ecd3ec230a072857ea197e1890 (patch) | |
tree | 70ffff0b7f48b35a70b8b04253abe9118ded6026 /coreutils/cat.c | |
parent | e935602ff5d5a45be56585b8bad44194c3e837a3 (diff) | |
download | busybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.tar.gz busybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.tar.bz2 busybox-w32-a41fdf331af344ecd3ec230a072857ea197e1890.zip |
preparatory patch for -Wwrite-strings #1
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r-- | coreutils/cat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c index 2b7c6035f..7a34891e8 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c | |||
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | int bb_cat(char **argv) | 15 | int bb_cat(char **argv) |
16 | { | 16 | { |
17 | static char *const argv_dash[] = { "-", NULL }; | 17 | static const char *const argv_dash[] = { "-", NULL }; |
18 | FILE *f; | 18 | FILE *f; |
19 | int retval = EXIT_SUCCESS; | 19 | int retval = EXIT_SUCCESS; |
20 | 20 | ||