diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-05 19:57:29 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-04-11 21:08:44 +0200 |
commit | d1b5cf830bfe169745721b21245d2217d2c2453e (patch) | |
tree | 3f230490e3ba67789b84f94aebac29370b81092f /lib/version.c | |
parent | bb0b10135caf58f82ee9e9d38f400880a7e5c9cc (diff) | |
download | curl-d1b5cf830bfe169745721b21245d2217d2c2453e.tar.gz |
build: fix Codacy/CppCheck warnings
- remove unused variables
- declare conditionally used variables conditionally
- suppress unused variable warnings in the CMake tests
- remove dead variable stores
- consistently use WIN32 macro to detect Windows
Closes https://github.com/curl/curl/pull/3739
Diffstat (limited to 'lib/version.c')
-rw-r--r-- | lib/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version.c b/lib/version.c index 9369ae8e3..4c885dc33 100644 --- a/lib/version.c +++ b/lib/version.c @@ -31,7 +31,7 @@ #ifdef USE_ARES # if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \ - (defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__)) + (defined(WIN32) || defined(__SYMBIAN32__)) # define CARES_STATICLIB # endif # include <ares.h> |