Fix awful bug where uint32_t was sometimes defined as a short.

--HG--
branch : dtrg-videocore
This commit is contained in:
David Given 2013-05-25 00:33:01 +01:00
parent 98a51732ab
commit 98e745d04c

View file

@ -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;