From: Tseng Jun <6501202@qq.com> Date: Sun, 28 Apr 2019 07:25:15 +0000 (+0800) Subject: curlver.h: use parenthesis in CURL_VERSION_BITS macro X-Git-Tag: curl-7_65_0~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2fe2da9f1a6b059f94c28e963032539790dbcae5;p=thirdparty%2Fcurl.git curlver.h: use parenthesis in CURL_VERSION_BITS macro Closes #3809 --- diff --git a/include/curl/curlver.h b/include/curl/curlver.h index 8400826ba6..bca53cb6b8 100644 --- a/include/curl/curlver.h +++ b/include/curl/curlver.h @@ -70,7 +70,7 @@ */ #define LIBCURL_TIMESTAMP "[unreleased]" -#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z) +#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z)) #define CURL_AT_LEAST_VERSION(x,y,z) \ (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))