diff options
-rw-r--r-- | iolib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ | |||
3 | ** Input/output library to LUA | 3 | ** Input/output library to LUA |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_iolib="$Id: iolib.c,v 1.34 1996/02/09 19:02:30 roberto Exp roberto $"; | 6 | char *rcs_iolib="$Id: iolib.c,v 1.35 1996/02/09 19:35:23 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | #include <ctype.h> | 9 | #include <ctype.h> |
@@ -520,7 +520,7 @@ static void io_date (void) | |||
520 | if (strftime(b,sizeof(b),s,tm)) | 520 | if (strftime(b,sizeof(b),s,tm)) |
521 | lua_pushstring(b); | 521 | lua_pushstring(b); |
522 | else | 522 | else |
523 | lua_error("`date' format too long"); | 523 | lua_error("invalid `date' format"); |
524 | } | 524 | } |
525 | 525 | ||
526 | /* | 526 | /* |