diff options
author | Tero Roponen <tero.roponen@gmail.com> | 2011-09-21 15:44:34 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-21 07:41:14 -0700 |
commit | 705d561bb1400e603721582b82d53f38315f7bf3 (patch) | |
tree | 1ad9484dda3ae0fb56799096a917ea89bf7f132b /main.c | |
parent | 6eefcf40e68c2a5cf35c35b92ed7529072e5da64 (diff) | |
download | subsurface-705d561bb1400e603721582b82d53f38315f7bf3.tar.gz |
September comes before October
This patch fixes the ordering of month names.
Signed-off-by: Tero Roponen <tero.roponen@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; } |