1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +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:
cuz 2002-11-13 13:26:05 +00:00
parent 1455555c57
commit 3ed8d565d4

View File

@ -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':