From 792d675d819119f209fb656bd366d010837a8762 Mon Sep 17 00:00:00 2001 From: Dana Olson Date: Mon, 8 Dec 2014 23:53:55 -0500 Subject: [PATCH] wrong typedef - closes #270 --- core/int_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/int_types.h b/core/int_types.h index 15ef68e915c..31f05b2d354 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 #endif