aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--iolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iolib.c b/iolib.c
index 38b6f318..2d805010 100644
--- a/iolib.c
+++ b/iolib.c
@@ -3,7 +3,7 @@
3** Input/output library to LUA 3** Input/output library to LUA
4*/ 4*/
5 5
6char *rcs_iolib="$Id: iolib.c,v 1.34 1996/02/09 19:02:30 roberto Exp roberto $"; 6char *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/*