diff options
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 | ||