Browse Source

Merge pull request #22 from GeertVL/patch-1

_int64 does not exist but __int64 on WIN32
Marco Bambini 8 years ago
parent
commit
dbcedb1ae6
1 changed files with 1 additions and 1 deletions
  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>