From b1db942595c77618bf304589c5d8a1283e2ed61b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 15 Jun 2008 18:52:27 +0200 Subject: fix the compilation failure for real * src/sort.c (monthtab): Neither "const" may be added. --- src/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sort.c') 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}, -- cgit v1.2.3-54-g00ecf