fixed typo on used USHORT_MAX instead of USHRT_MAX

This commit is contained in:
Antonio Linares
2005-04-18 22:10:09 +00:00
parent 37c3398905
commit 8f3da9c87b

View File

@@ -226,11 +226,11 @@
* below are some hacks which don't have to be true on some machines
* please update it if necessary
*/
#if ULONG_MAX > UINT_MAX && UINT_MAX > USHORT_MAX
#if ULONG_MAX > UINT_MAX && UINT_MAX > USHRT_MAX
# define HB_ARCH_64BIT
#elif ULONG_MAX == UINT_MAX && UINT_MAX > USHORT_MAX
#elif ULONG_MAX == UINT_MAX && UINT_MAX > USHRT_MAX
# define HB_ARCH_32BIT
#elif ULONG_MAX > UINT_MAX && UINT_MAX == USHORT_MAX
#elif ULONG_MAX > UINT_MAX && UINT_MAX == USHRT_MAX
# define HB_ARCH_16BIT
#endif