Skip to content
Snippets Groups Projects
Commit 2288094b authored by Yang Tse's avatar Yang Tse
Browse files

fix wrong macro name introduced in las commit

parent 273b2b23
No related branches found
No related tags found
No related merge requests found
......@@ -2011,8 +2011,8 @@ AC_DEFUN([CURL_CHECK_VARIADIC_MACROS], [
int fun2(int arg1, int arg2)
{ return arg1 + arg2; }
],[
int res3 = c99_vmacro3(1, 2, 3);
int res2 = c99_vmacro2(1, 2);
int res3 = gcc_vmacro3(1, 2, 3);
int res2 = gcc_vmacro2(1, 2);
])
],[
curl_cv_variadic_macros_gcc="yes"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment