gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 108/219: curlver.h: use parenthesis in CURL_VERSION


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 108/219: curlver.h: use parenthesis in CURL_VERSION_BITS macro
Date: Wed, 22 May 2019 19:17:27 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 2fe2da9f1a6b059f94c28e963032539790dbcae5
Author: Tseng Jun <address@hidden>
AuthorDate: Sun Apr 28 15:25:15 2019 +0800

    curlver.h: use parenthesis in CURL_VERSION_BITS macro
    
    Closes #3809
---
 include/curl/curlver.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]