aboutsummaryrefslogtreecommitdiff
path: root/http.h
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-08-12 17:11:15 -0500
committerJunio C Hamano <gitster@pobox.com>2010-08-12 15:44:51 -0700
commit987460611ab08ebac83ead9a5ee316d3b3823e7f (patch)
treebe489213bae1efc32ec9e82e0f22ce55a98065a7 /http.h
parent0d1d6e50cf3401874b50b77aa1dc0e33357a1556 (diff)
downloadgit-987460611ab08ebac83ead9a5ee316d3b3823e7f.tar.gz
git-987460611ab08ebac83ead9a5ee316d3b3823e7f.tar.xz
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/http.h b/http.h
index a0b590159..173f74c82 100644
--- a/http.h
+++ b/http.h
@@ -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)