瀏覽代碼

_int64 does not exist but __int64 on WIN32

Otherwise it does not compile on WIN32.
Geert Van Laethem 8 年之前
父節點
當前提交
51ead1c0fb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utils/gravity_utils.h

+ 1 - 1
src/utils/gravity_utils.h

@@ -13,7 +13,7 @@
 #include <stdbool.h>
 
 #if defined(_WIN32)
-typedef unsigned _int64 nanotime_t;
+typedef unsigned __int64 nanotime_t;
 #define DIRREF			HANDLE
 #else
 #include <dirent.h>