Fix for debug printf format strings. size_t are not expected.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@181 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2007-05-08 23:20:48 +00:00
parent 00a33f5788
commit b1f6e83380
3 changed files with 8 additions and 6 deletions

View File

@@ -644,8 +644,9 @@ SoapSendAction( IN char *action_url,
DBGONLY( UpnpPrintf( UPNP_INFO, SOAP, __FILE__, __LINE__,
"path=%.*s, hostport=%.*s\n",
url.pathquery.size, url.pathquery.buff,
url.hostport.text.size,
(int)url.pathquery.size,
url.pathquery.buff,
(int)url.hostport.text.size,
url.hostport.text.buff ); )
xml_start_len = strlen( xml_start );
@@ -800,8 +801,9 @@ SoapSendActionEx( IN char *action_url,
DBGONLY( UpnpPrintf( UPNP_INFO, SOAP, __FILE__, __LINE__,
"path=%.*s, hostport=%.*s\n",
url.pathquery.size, url.pathquery.buff,
url.hostport.text.size,
(int)url.pathquery.size,
url.pathquery.buff,
(int)url.hostport.text.size,
url.hostport.text.buff ); )
xml_start_len = strlen( xml_start );