From b902e6392229de2a0500ce421510ebf4f7c0661b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 19 Dec 2004 20:24:28 +0000 Subject: [PATCH] corrected compilation error in va_copy() test git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure | 3 ++- configure.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9366022d39..d3d2ecc03b 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.in b/configure.in index d3a3fd1616..3c0ab647ac 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.45.2