From 8f3da9c87b2941a8e55a87faec84aa5425b7e372 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Mon, 18 Apr 2005 22:10:09 +0000 Subject: [PATCH] fixed typo on used USHORT_MAX instead of USHRT_MAX --- harbour/include/hbdefs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/harbour/include/hbdefs.h b/harbour/include/hbdefs.h index 70f37ab6ee..ee488f853c 100644 --- a/harbour/include/hbdefs.h +++ b/harbour/include/hbdefs.h @@ -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