corrected compilation error in va_copy() test

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-12-19 20:24:28 +00:00
parent d1a47dfe23
commit b902e63922
2 changed files with 4 additions and 2 deletions

3
configure vendored
View File

@ -18263,7 +18263,8 @@ else
}
int main()
{
return foo("hi", 17);
foo("hi", 17);
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext

View File

@ -1740,7 +1740,8 @@ AC_CACHE_CHECK([for va_copy],
}
int main()
{
return foo("hi", 17);
foo("hi", 17);
return 0;
}],
wx_cv_func_va_copy=yes,
wx_cv_func_va_copy=no