aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cat.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r--coreutils/cat.c2
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
15int bb_cat(char **argv) 15int 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