diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-05-11 22:02:39 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-05-12 09:23:34 +0200 |
commit | 5f8b9fe81d9681033babb4fbcf983304aa7d11c8 (patch) | |
tree | dd1f1e918b3a2deed6d2b05b98432848415c5bdb /CMake | |
parent | 407408f376737f3789b612288814f41cc62f5ace (diff) | |
download | curl-5f8b9fe81d9681033babb4fbcf983304aa7d11c8.tar.gz |
cmake: restore C89 compatibility of CurlTests.c
I broke it in d1b5cf830bfe169745721b21245d2217d2c2453e and
97de97daefc2ed084c91eff34af2426f2e55e134.
Reported-by: Viktor Szakats
Ref: https://github.com/curl/curl/commit/97de97daefc2ed084c91eff34af2426f2e55e134#commitcomment-33499044
Closes https://github.com/curl/curl/pull/3868
Diffstat (limited to 'CMake')
-rw-r--r-- | CMake/CurlTests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMake/CurlTests.c b/CMake/CurlTests.c index f7290c398..07b516b4d 100644 --- a/CMake/CurlTests.c +++ b/CMake/CurlTests.c @@ -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; } |