From: Jim Meyering Date: Sun, 15 Jun 2008 16:52:27 +0000 (+0200) Subject: fix the compilation failure for real X-Git-Tag: v7.0~176 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b1db942595c77618bf304589c5d8a1283e2ed61b;p=platform%2Fupstream%2Fcoreutils.git fix the compilation failure for real * src/sort.c (monthtab): Neither "const" may be added. --- diff --git a/src/sort.c b/src/sort.c index a5c6ff3..bec3cf0 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},