summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-06-15 18:52:27 +0200
committerJim Meyering <meyering@redhat.com>2008-06-15 18:52:27 +0200
commitb1db942595c77618bf304589c5d8a1283e2ed61b (patch)
tree07eac24412f573b26be34f68232b7ba893dbfa24 /src/sort.c
parent2cbbbf631967fd0dd75275c2cde46903fdb2a7f6 (diff)
downloadcoreutils-b1db942595c77618bf304589c5d8a1283e2ed61b.tar.xz
fix the compilation failure for real
* src/sort.c (monthtab): Neither "const" may be added.
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c
index a5c6ff34a..bec3cf057 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 const monthtab[] =
+static struct month monthtab[] =
{
{"APR", 4},
{"AUG", 8},