]> granicus.if.org Git - file/commitdiff
fix wrong constant for size_t on 64 bit machines; from pooka.
authorChristos Zoulas <christos@zoulas.com>
Fri, 15 Jun 2007 00:01:15 +0000 (00:01 +0000)
committerChristos Zoulas <christos@zoulas.com>
Fri, 15 Jun 2007 00:01:15 +0000 (00:01 +0000)
src/funcs.c

index 55ac6b215d70ad6a91385e0e047d003ab426c152..3ffcaa8a1ba41733e6388034fb3a7648b65d11e5 100644 (file)
 #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.31 2007/05/24 12:29:54 christos Exp $")
+FILE_RCSID("@(#)$File: funcs.c,v 1.32 2007/05/24 17:22:27 christos Exp $")
 #endif /* lint */
 
 #ifndef HAVE_VSNPRINTF