cmake: restore C89 compatibility of CurlTests.c

I broke it in d1b5cf830b and
97de97daef.

Reported-by: Viktor Szakats
Ref: 97de97daef (commitcomment-33499044)
Closes https://github.com/curl/curl/pull/3868
This commit is contained in:
Marcel Raad 2019-05-11 22:02:39 +02:00
parent 407408f376
commit 5f8b9fe81d
No known key found for this signature in database
GPG Key ID: FE4D8BC5EE1701DD
1 changed files with 2 additions and 2 deletions

View File

@ -584,8 +584,8 @@ int fun2(int arg1, int arg2) {
int
main() {
int res3 = c99_vmacro3(1, 2, 3);
(void)res3;
int res2 = c99_vmacro2(1, 2);
(void)res3;
(void)res2;
return 0;
}
@ -607,8 +607,8 @@ int fun2(int arg1, int arg2) {
int
main() {
int res3 = gcc_vmacro3(1, 2, 3);
(void)res3;
int res2 = gcc_vmacro2(1, 2);
(void)res3;
(void)res2;
return 0;
}