Author: tkreuzer Date: Sat Jun 20 15:21:33 2009 New Revision: 41476
URL: http://svn.reactos.org/svn/reactos?rev=41476&view=rev Log: fix x86 compilation
Modified: branches/ros-amd64-bringup/reactos/lib/sdk/crt/time_new/mktime.c
Modified: branches/ros-amd64-bringup/reactos/lib/sdk/crt/time_new/mktime.c URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/sd... ============================================================================== --- branches/ros-amd64-bringup/reactos/lib/sdk/crt/time_new/mktime.c [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/time_new/mktime.c [iso-8859-1] Sat Jun 20 15:21:33 2009 @@ -76,7 +76,7 @@ }
/* Finally get normalized tm struct */ - ptm2 = gmtime(&time); + ptm2 = _gmtime64(&time); if (!ptm2) { return -1;