From 2fe2da9f1a6b059f94c28e963032539790dbcae5 Mon Sep 17 00:00:00 2001 From: Tseng Jun <6501202@qq.com> Date: Sun, 28 Apr 2019 15:25:15 +0800 Subject: curlver.h: use parenthesis in CURL_VERSION_BITS macro Closes #3809 --- include/curl/curlver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/curl/curlver.h b/include/curl/curlver.h index 8400826ba..bca53cb6b 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)) -- cgit v1.2.1