diff options
author | Dana Olson <dana@shineuponthee.com> | 2014-12-08 23:53:55 -0500 |
---|---|---|
committer | Dana Olson <dana@shineuponthee.com> | 2014-12-08 23:53:55 -0500 |
commit | 792d675d819119f209fb656bd366d010837a8762 (patch) | |
tree | 3d77ede806d12cf837dc6f27f21b3087de058409 /core | |
parent | be4e40e90a5a322f6a7cec4893854ef5b15db600 (diff) |
wrong typedef - closes #270
Diffstat (limited to 'core')
-rw-r--r-- | core/int_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/int_types.h b/core/int_types.h index 15ef68e915..31f05b2d35 100644 --- a/core/int_types.h +++ b/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 |