From 98e745d04ce77f7cbdffc860817e6724a049f09f Mon Sep 17 00:00:00 2001 From: David Given Date: Sat, 25 May 2013 00:33:01 +0100 Subject: [PATCH] Fix awful bug where uint32_t was sometimes defined as a short. --HG-- branch : dtrg-videocore --- lang/cem/libcc.ansi/headers/stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/libcc.ansi/headers/stdint.h b/lang/cem/libcc.ansi/headers/stdint.h index 86fd04815..ce9cf3e38 100644 --- a/lang/cem/libcc.ansi/headers/stdint.h +++ b/lang/cem/libcc.ansi/headers/stdint.h @@ -26,7 +26,7 @@ typedef unsigned short uint16_t; #if _EM_WSIZE == 4 typedef signed int int32_t; -typedef unsigned short uint32_t; +typedef unsigned int uint32_t; #else typedef signed long int32_t; typedef unsigned long uint32_t; -- 2.34.1