summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-10-17 14:29:30 (GMT)
committerBrad King <brad.king@kitware.com>2007-10-17 14:29:30 (GMT)
commit7513523872e83cd56717824b5522291a0f926905 (patch)
tree5d19e8aca492604c23f36bb90f4c49a2b8019483 /Utilities
parent97e5b7e01fede19bd3910b1c1d3bdcc4ff3dbc02 (diff)
downloadCMake-7513523872e83cd56717824b5522291a0f926905.zip
CMake-7513523872e83cd56717824b5522291a0f926905.tar.gz
CMake-7513523872e83cd56717824b5522291a0f926905.tar.bz2
COMP: Attempt to fix warning about pointer->integer cast.
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/cmxmlrpc/xmlrpc_client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmxmlrpc/xmlrpc_client.h b/Utilities/cmxmlrpc/xmlrpc_client.h
index 60c98ba..acb89b1 100644
--- a/Utilities/cmxmlrpc/xmlrpc_client.h
+++ b/Utilities/cmxmlrpc/xmlrpc_client.h
@@ -36,7 +36,7 @@ struct xmlrpc_clientparms {
};
#define XMLRPC_CP_MEMBER_OFFSET(mbrname) \
- ((unsigned int)(char*)&((struct xmlrpc_clientparms *)0)->mbrname)
+ ((unsigned long)(char*)&((struct xmlrpc_clientparms *)0)->mbrname)
#define XMLRPC_CP_MEMBER_SIZE(mbrname) \
sizeof(((struct xmlrpc_clientparms *)0)->mbrname)
#define XMLRPC_CPSIZE(mbrname) \