updated from L to ull for easier mingw32 builds.

This commit is contained in:
xenocons 2013-03-14 09:06:33 +11:00
parent 3bbcac3226
commit d8094f8602

View file

@ -373,7 +373,7 @@ get_time(int64_t *sec, int32_t *nsec) {
ul.HighPart = fileTime.dwHighDateTime;
uint64_t ns_since_1601 = ul.QuadPart / 10;
const uint64_t NANOSECONDS_FROM_1601_TO_1970 = 11644473600000000u;
const uint64_t NANOSECONDS_FROM_1601_TO_1970 = 11644473600000000ull;
uint64_t ns_since_1970 = ns_since_1601 - NANOSECONDS_FROM_1601_TO_1970;
*sec = ns_since_1970 / 1000000;
*nsec = (ns_since_1970 % 1000000) * 1000;