aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Tero Roponen <tero.roponen@gmail.com>2011-09-21 15:44:34 +0300
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-21 07:41:14 -0700
commit705d561bb1400e603721582b82d53f38315f7bf3 (patch)
tree1ad9484dda3ae0fb56799096a917ea89bf7f132b /main.c
parent6eefcf40e68c2a5cf35c35b92ed7529072e5da64 (diff)
downloadsubsurface-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 3e4145645..ef6212ae2 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];
}