Explorar o código

Merge pull request #946 from adolson/uint64-fix

wrong typedef - closes #270
Juan Linietsky %!s(int64=10) %!d(string=hai) anos
pai
achega
a6c2400b24
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 signed int      int32_t;
 typedef long long	int64_t;
-typedef unsigned long long int64_t;
+typedef unsigned long long uint64_t;
 #else
 #include <stdint.h>
 #endif