From: Tero Roponen Date: Wed, 21 Sep 2011 12:44:34 +0000 (+0300) Subject: September comes before October X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=705d561bb1400e603721582b82d53f38315f7bf3;p=ext%2Fsubsurface.git September comes before October This patch fixes the ordering of month names. Signed-off-by: Tero Roponen Signed-off-by: Linus Torvalds --- diff --git a/main.c b/main.c index 3e41456..ef6212a 100644 --- a/main.c +++ b/main.c @@ -39,7 +39,7 @@ const char *monthname(int mon) { static const char month_array[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", - "Jul", "Aug", "Oct", "Sep", "Nov", "Dec", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", }; return month_array[mon]; }