[cmake-commits] king committed xmlrpc_client.h 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Oct 17 10:29:32 EDT 2007


Update of /cvsroot/CMake/CMake/Utilities/cmxmlrpc
In directory public:/mounts/ram/cvs-serv22422

Modified Files:
	xmlrpc_client.h 
Log Message:
COMP: Attempt to fix warning about pointer->integer cast.


Index: xmlrpc_client.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Utilities/cmxmlrpc/xmlrpc_client.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xmlrpc_client.h	24 Feb 2005 01:28:21 -0000	1.2
+++ xmlrpc_client.h	17 Oct 2007 14:29:30 -0000	1.3
@@ -36,7 +36,7 @@
 };
 
 #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) \



More information about the Cmake-commits mailing list