summaryrefslogtreecommitdiff
path: root/source3/lib/replace/replace.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-04-18 00:30:50 -0700
committerJeremy Allison <jra@samba.org>2008-04-18 00:30:50 -0700
commite90b4061c134486fd3958ea11a28af9801bcc6a2 (patch)
treeef823d86f9ff29339c73ac1d25bbc6015c939ccc /source3/lib/replace/replace.h
parent4f46c2d9268ffb418e4f43baf479c03384e2ddda (diff)
downloadsamba-e90b4061c134486fd3958ea11a28af9801bcc6a2.tar.gz
samba-e90b4061c134486fd3958ea11a28af9801bcc6a2.tar.bz2
samba-e90b4061c134486fd3958ea11a28af9801bcc6a2.zip
Janitor for tridge. Keep lib/replace in sync with the gcc4
changes. Jeremy. (This used to be commit b496f133228b74bf613dab81167a5b9670511c51)
Diffstat (limited to 'source3/lib/replace/replace.h')
-rw-r--r--source3/lib/replace/replace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/replace.h b/source3/lib/replace/replace.h
index 5fe79394eb..bf95169352 100644
--- a/source3/lib/replace/replace.h
+++ b/source3/lib/replace/replace.h
@@ -499,7 +499,7 @@ typedef int bool;
Also, please call this via the discard_const_p() macro interface, as that
makes the return type safe.
*/
-#define discard_const(ptr) ((void *)((intptr_t)(ptr)))
+#define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
/** Type-safe version of discard_const */
#define discard_const_p(type, ptr) ((type *)discard_const(ptr))