diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | coreutils/stat.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index d8d814a..5042c12 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -170,7 +170,7 @@ static int show_color = 0; /* long option entry used only for --color, which has no short option * equivalent. */ -static struct option ls_color_opt[] = +static const struct option ls_color_opt[] = { {"color", optional_argument, NULL, 1}, {NULL, 0, NULL, 0} diff --git a/coreutils/stat.c b/coreutils/stat.c index 138cc9e..c17b4d5 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c @@ -81,9 +81,9 @@ static char const *human_time(time_t t) static char const *human_fstype(long f_type) { int i; - static struct types { + static const struct types { long type; - char *fs; + const char *fs; } humantypes[] = { { 0xADFF, "affs" }, { 0x1Cd1, "devpts" }, |