diff options
author | Jim Meyering <meyering@redhat.com> | 2008-06-15 18:52:27 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-06-15 18:52:27 +0200 |
commit | b1db942595c77618bf304589c5d8a1283e2ed61b (patch) | |
tree | 07eac24412f573b26be34f68232b7ba893dbfa24 /src | |
parent | 2cbbbf631967fd0dd75275c2cde46903fdb2a7f6 (diff) | |
download | coreutils-b1db942595c77618bf304589c5d8a1283e2ed61b.tar.xz |
fix the compilation failure for real
* src/sort.c (monthtab): Neither "const" may be added.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 2 |
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}, |