[MSVC]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 8 Nov 2010 13:48:45 +0000 (13:48 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 8 Nov 2010 13:48:45 +0000 (13:48 +0000)
Fix warnings

svn path=/branches/cmake-bringup/; revision=49532

lib/sdk/crt/include/internal/time.h

index ad72279..852bdab 100644 (file)
@@ -20,9 +20,9 @@ FileTimeToUnixTime(const FILETIME *FileTime, USHORT *millitm)
     ULargeInt.HighPart = FileTime->dwHighDateTime;
     ULargeInt.QuadPart -= DIFFTIME;
 
     ULargeInt.HighPart = FileTime->dwHighDateTime;
     ULargeInt.QuadPart -= DIFFTIME;
 
-    time = ULargeInt.QuadPart / 10000000;
+    time = (time_t)(ULargeInt.QuadPart / 10000000);
     if (millitm)
     if (millitm)
-        *millitm = (ULargeInt.QuadPart % 10000000) / 10000;
+        *millitm = (USHORT)((ULargeInt.QuadPart % 10000000) / 10000);
 
     return time;
 }
 
     return time;
 }