From: David Given Date: Fri, 24 May 2013 23:33:01 +0000 (+0100) Subject: Fix awful bug where uint32_t was sometimes defined as a short. X-Git-Tag: release-6-0-pre-5~10^2~42 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=98e745d04ce77f7cbdffc860817e6724a049f09f;p=ack.git Fix awful bug where uint32_t was sometimes defined as a short. --HG-- branch : dtrg-videocore --- 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;