]> 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 47f0e4f267de6f9583daf1375147a8f44a271d41..026235253cf1b53c14c4016c524d72b9875dc258 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.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