Browse Source

wrong typedef - closes #270

Dana Olson 10 năm trước cách đây
mục cha
commit
792d675d81
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      core/int_types.h

+ 1 - 1
core/int_types.h

@@ -48,7 +48,7 @@ typedef signed short    int16_t;
 typedef unsigned int    uint32_t;
 typedef unsigned int    uint32_t;
 typedef signed int      int32_t;
 typedef signed int      int32_t;
 typedef long long	int64_t;
 typedef long long	int64_t;
-typedef unsigned long long int64_t;
+typedef unsigned long long uint64_t;
 #else
 #else
 #include <stdint.h>
 #include <stdint.h>
 #endif
 #endif