diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-08-12 17:11:15 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-12 15:44:51 -0700 |
commit | 987460611ab08ebac83ead9a5ee316d3b3823e7f (patch) | |
tree | be489213bae1efc32ec9e82e0f22ce55a98065a7 /http.h | |
parent | 0d1d6e50cf3401874b50b77aa1dc0e33357a1556 (diff) | |
download | git-987460611ab08ebac83ead9a5ee316d3b3823e7f.tar.gz |
Standardize do { ... } while (0) style
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,10 +23,10 @@ #endif #if LIBCURL_VERSION_NUM < 0x070704 -#define curl_global_cleanup() do { /* nothing */ } while(0) +#define curl_global_cleanup() do { /* nothing */ } while (0) #endif #if LIBCURL_VERSION_NUM < 0x070800 -#define curl_global_init(a) do { /* nothing */ } while(0) +#define curl_global_init(a) do { /* nothing */ } while (0) #endif #if (LIBCURL_VERSION_NUM < 0x070c04) || (LIBCURL_VERSION_NUM == 0x071000) |