mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:03:24 +00:00
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>
This commit is contained in:
parent
6eefcf40e6
commit
705d561bb1
1 changed files with 1 additions and 1 deletions
2
main.c
2
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];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue