summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTseng Jun <6501202@qq.com>2019-04-28 15:25:15 +0800
committerDaniel Stenberg <daniel@haxx.se>2019-04-28 11:20:22 +0200
commit2fe2da9f1a6b059f94c28e963032539790dbcae5 (patch)
tree6e2b1034ade9422576e540f448449c36dc15742c
parentdc5ac786d90d38d8ef5fd2c9dc211486204efad5 (diff)
downloadcurl-2fe2da9f1a6b059f94c28e963032539790dbcae5.tar.gz
curlver.h: use parenthesis in CURL_VERSION_BITS macro
Closes #3809
-rw-r--r--include/curl/curlver.h2
1 files changed, 1 insertions, 1 deletions
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))