summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c
index 632c5c836..218bd2986 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -205,7 +205,7 @@ static char fold_toupper[UCHAR_LIM];
/* Table mapping month names to integers.
Alphabetic order allows binary search. */
-static struct month monthtab[] =
+static const struct month const monthtab[] =
{
{"APR", 4},
{"AUG", 8},
@@ -399,7 +399,7 @@ enum
static char const short_options[] = "-bcCdfgik:mMno:rRsS:t:T:uy:z";
-static struct option const long_options[] =
+static const struct option const long_options[] =
{
{"ignore-leading-blanks", no_argument, NULL, 'b'},
{"check", optional_argument, NULL, CHECK_OPTION},