Fix for va_list compilation in x86_64.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@24 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2006-06-26 14:27:53 +00:00
parent 9147c3517e
commit 4c5b61dc55

View File

@ -345,7 +345,7 @@ UpnpMakeAction( const char *ActionName,
const char *Arg,
... )
{
va_list ArgList=NULL;
va_list ArgList;
IXML_Document *out = NULL;
if( NumArg > 0 ) {
@ -387,7 +387,7 @@ UpnpMakeActionResponse( const char *ActionName,
const char *Arg,
... )
{
va_list ArgList=NULL;
va_list ArgList;
IXML_Document *out = NULL;
if( NumArg > 0 ) {