From dcd53c7fa7ec5ecc278ee7afffc96318b98a8d51 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 6 Oct 2008 12:57:47 +0000 Subject: [PATCH] fixed bug in pointer size detection --- lib/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.h b/lib/types.h index 58ee32c..6af6ab7 100644 --- a/lib/types.h +++ b/lib/types.h @@ -54,7 +54,7 @@ typedef signed short S16; typedef unsigned char U8; typedef signed char S8; -#if SIZEOF_VOIDP == SIZEOF_LONG_LONG +#if SIZEOF_VOIDP == SIZEOF_SIGNED_LONG_LONG typedef unsigned long long ptroff_t; #elif SIZEOF_VOIDP == SIZEOF_SIGNED typedef unsigned ptroff_t; -- 1.7.10.4