diff options
author | Brad King <brad.king@kitware.com> | 2016-09-06 12:50:55 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-06 12:50:55 (GMT) |
commit | 19255a3516e230da77b18c051d89012bcabcd254 (patch) | |
tree | 45f7f57f5b84a5664a08d198b924b8ed2cb32707 /Source/cmCurl.cxx | |
parent | eb226b366f40da2d284bb60d57c2d8bcb85de607 (diff) | |
parent | 1a9de8035c35cdb3e0501ce2cf2f816e4220bea0 (diff) | |
download | CMake-19255a3516e230da77b18c051d89012bcabcd254.zip CMake-19255a3516e230da77b18c051d89012bcabcd254.tar.gz CMake-19255a3516e230da77b18c051d89012bcabcd254.tar.bz2 |
Merge topic 'macro-parenthesis'
1a9de803 surround macro arguments with parentheses
Diffstat (limited to 'Source/cmCurl.cxx')
-rw-r--r-- | Source/cmCurl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCurl.cxx b/Source/cmCurl.cxx index eec773f..91da239 100644 --- a/Source/cmCurl.cxx +++ b/Source/cmCurl.cxx @@ -25,9 +25,9 @@ #endif #define check_curl_result(result, errstr) \ - if (result != CURLE_OK && result != CURLE_NOT_BUILT_IN) { \ + if ((result) != CURLE_OK && (result) != CURLE_NOT_BUILT_IN) { \ e += e.empty() ? "" : "\n"; \ - e += errstr; \ + e += (errstr); \ e += ::curl_easy_strerror(result); \ } |