fix the test for vsscanf() declaration which never passed because it was trying to use char* instead of va_list
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4182,8 +4182,9 @@ if test "$ac_cv_func_vsscanf" = "yes"; then
|
||||
#endif
|
||||
],
|
||||
[
|
||||
char *buf, *parse;
|
||||
vsscanf(buf, "%s", parse);
|
||||
char *buf;
|
||||
va_list args;
|
||||
vsscanf(buf, "%s", args);
|
||||
],
|
||||
wx_cv_func_vsscanf_decl=yes,
|
||||
wx_cv_func_vsscanf_decl=no
|
||||
|
Reference in New Issue
Block a user