projects
/
file
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f75dfd6
)
fix wrong constant for size_t on 64 bit machines; from pooka.
author
Christos Zoulas
<christos@zoulas.com>
Fri, 15 Jun 2007 00:01:15 +0000
(
00:01
+0000)
committer
Christos Zoulas
<christos@zoulas.com>
Fri, 15 Jun 2007 00:01:15 +0000
(
00:01
+0000)
src/funcs.c
patch
|
blob
|
history
diff --git
a/src/funcs.c
b/src/funcs.c
index 55ac6b215d70ad6a91385e0e047d003ab426c152..3ffcaa8a1ba41733e6388034fb3a7648b65d11e5 100644
(file)
--- 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)0xffffffffffffffff
f
U
+#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.3
1 2007/05/24 12:29:54
christos Exp $")
+FILE_RCSID("@(#)$File: funcs.c,v 1.3
2 2007/05/24 17:22:27
christos Exp $")
#endif /* lint */
#ifndef HAVE_VSNPRINTF