From 8786b288aa318329a8ae05344af25dba3872e3c4 Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Fri, 15 Jun 2007 00:01:15 +0000 Subject: [PATCH] fix wrong constant for size_t on 64 bit machines; from pooka. --- src/funcs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/funcs.c b/src/funcs.c index 47f0e4f2..02623525 100644 --- a/src/funcs.c +++ b/src/funcs.c @@ -41,14 +41,14 @@ #endif #ifndef SIZE_T_MAX #ifdef __LP64__ -#define SIZE_T_MAX (size_t)0xfffffffffffffffffU +#define SIZE_T_MAX (size_t)0xffffffffffffffffU #else #define SIZE_T_MAX (size_t)0xffffffffU #endif #endif #ifndef lint -FILE_RCSID("@(#)$File: funcs.c,v 1.32 2007/05/24 17:22:27 christos Exp $") +FILE_RCSID("@(#)$File: funcs.c,v 1.33 2007/06/15 00:01:15 christos Exp $") #endif /* lint */ #ifndef HAVE_VSNPRINTF -- 2.50.1