--------------------- PatchSet 6474 Date: 2005/03/05 20:40:13 Author: hno Branch: lfs-2_5 Tag: (none) Log: Fix PRINTF_OFF_T define to match squid_off_t sizes rather than system off_t Members: src/squid.h:1.13.6.7.8.1->1.13.6.7.8.2 Index: squid/src/squid.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/squid.h,v retrieving revision 1.13.6.7.8.1 retrieving revision 1.13.6.7.8.2 diff -u -r1.13.6.7.8.1 -r1.13.6.7.8.2 --- squid/src/squid.h 25 Feb 2005 10:48:51 -0000 1.13.6.7.8.1 +++ squid/src/squid.h 5 Mar 2005 20:40:13 -0000 1.13.6.7.8.2 @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.13.6.7.8.1 2005/02/25 10:48:51 hno Exp $ + * $Id: squid.h,v 1.13.6.7.8.2 2005/03/05 20:40:13 hno Exp $ * * AUTHOR: Duane Wessels * @@ -451,12 +451,10 @@ /* * printf format shortcuts for size_t, depending on size */ -#if SIZEOF_OFF_T > SIZEOF_LONG +#if SIZEOF_LONG_LONG > SIZEOF_LONG #define PRINTF_OFF_T "llu" -#elif SIZEOF_OFF_T > SIZEOF_INT -#define PRINTF_OFF_T "lu" #else -#define PRINTF_OFF_T "u" +#define PRINTF_OFF_T "lu" #endif /*