COMP: Attempt to fix warning about pointer->integer cast.

This commit is contained in:
Brad King 2007-10-17 10:29:30 -04:00
parent 97e5b7e01f
commit 7513523872
1 changed files with 1 additions and 1 deletions

View File

@ -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) \