Fixed a bug
git-svn-id: svn://svn.cc65.org/cc65/trunk@1514 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
1455555c57
commit
3ed8d565d4
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ size_t __fastcall__ strftime (char* buf, size_t bufsize, const char* format,
|
|||
break;
|
||||
|
||||
case 'b':
|
||||
sprintf (arg, "%.3s", months[tm->tm_mday]);
|
||||
sprintf (arg, "%.3s", months[tm->tm_mon]);
|
||||
break;
|
||||
|
||||
case 'c':
|
||||
|
|
Loading…
Add table
Reference in a new issue