From a4d07a2d40ac72597192124f779a87824871d3a8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 10 May 2007 14:13:50 +0000 Subject: [PATCH] stupid bug --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40767 --- sourcepawn/compiler/sc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcepawn/compiler/sc1.c b/sourcepawn/compiler/sc1.c index 97e3fc41..6202762e 100644 --- a/sourcepawn/compiler/sc1.c +++ b/sourcepawn/compiler/sc1.c @@ -566,7 +566,7 @@ static void inst_datetime_defines(void) time(&td); curtime = localtime(&td); - strftime(date, 31, "\"%m/%d%/Y\"", curtime); + strftime(date, 31, "\"%m/%d/%Y\"", curtime); strftime(ltime, 31, "\"%H:%M:%S\"", curtime); insert_subst("__DATE__", date, 8);