mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
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
@ -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…
Reference in New Issue
Block a user