From 0938cd6626601ce6f380fd3841d4a1a5fdb8682d Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 20 Jun 2009 11:21:33 +0000 Subject: [PATCH] fix x86 compilation svn path=/branches/ros-amd64-bringup/; revision=41476 --- reactos/lib/sdk/crt/time_new/mktime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/time_new/mktime.c b/reactos/lib/sdk/crt/time_new/mktime.c index f5731e30bc9..7c0cf720a3f 100644 --- a/reactos/lib/sdk/crt/time_new/mktime.c +++ b/reactos/lib/sdk/crt/time_new/mktime.c @@ -76,7 +76,7 @@ mktime_worker(struct tm * ptm, int utc) } /* Finally get normalized tm struct */ - ptm2 = gmtime(&time); + ptm2 = _gmtime64(&time); if (!ptm2) { return -1;