From 29f164500488ac53828c6b107a5221f988f94b53 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 13 Jul 2008 10:33:59 +0000 Subject: [PATCH] 2008-07-13 Tatsuhiro Tsujikawa Fixed compile error. Thanks gknauf for the patch. * src/asctime_r.c --- ChangeLog | 5 +++++ src/asctime_r.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6fa81e77..fe51f171 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-13 Tatsuhiro Tsujikawa + + Fixed compile error. Thanks gknauf for the patch. + * src/asctime_r.c + 2008-07-13 Tatsuhiro Tsujikawa Included asctime_r.h from a2time.h. diff --git a/src/asctime_r.c b/src/asctime_r.c index 581e1708..5d7ee3db 100644 --- a/src/asctime_r.c +++ b/src/asctime_r.c @@ -52,7 +52,7 @@ static void asctime_r_atexit() DeleteCriticalSection(&asctime_r_cs); } -char * asctime_r (const struct tm*, char *buf); +char * asctime_r (const struct tm *tyme, char *buf) { static char *p; static int initialized = 0; @@ -64,7 +64,7 @@ char * asctime_r (const struct tm*, char *buf); } EnterCriticalSection(&asctime_r_cs); - p = asctime(tm); + p = asctime(tyme); memcpy(buf, p, 26); LeaveCriticalSection(&asctime_r_cs); return buf;