Fix typo in typedef of U_INTEGER. Thanks Oleg!

This commit is contained in:
David Brown 2016-07-18 16:41:52 +01:00
parent d12e72a428
commit 3f6c6243cb

View file

@ -60,7 +60,7 @@ typedef unsigned char U_SHORTINT;
#if (__SIZEOF_POINTER__ == 8) || defined(LARGE) || defined(_WIN64) #if (__SIZEOF_POINTER__ == 8) || defined(LARGE) || defined(_WIN64)
typedef int INTEGER; // INTEGER is 32 bit. typedef int INTEGER; // INTEGER is 32 bit.
typedef long long LONGINT; // LONGINT is 64 bit. (long long is always 64 bits, while long can be 32 bits e.g. under MSC/MingW) typedef long long LONGINT; // LONGINT is 64 bit. (long long is always 64 bits, while long can be 32 bits e.g. under MSC/MingW)
typedef int U_INTEGER; typedef unsigned int U_INTEGER;
typedef unsigned long long U_LONGINT; typedef unsigned long long U_LONGINT;
#else #else
typedef short int INTEGER; // INTEGER is 16 bit. typedef short int INTEGER; // INTEGER is 16 bit.