curlver.h: use parenthesis in CURL_VERSION_BITS macro

Closes #3809
This commit is contained in:
Tseng Jun 2019-04-28 15:25:15 +08:00 committed by Daniel Stenberg
parent dc5ac786d9
commit 2fe2da9f1a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -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))