From 987460611ab08ebac83ead9a5ee316d3b3823e7f Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Thu, 12 Aug 2010 17:11:15 -0500 Subject: Standardize do { ... } while (0) style Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- base85.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base85.c') diff --git a/base85.c b/base85.c index e459feebb..781b5754f 100644 --- a/base85.c +++ b/base85.c @@ -7,9 +7,9 @@ #define say1(a,b) fprintf(stderr, a, b) #define say2(a,b,c) fprintf(stderr, a, b, c) #else -#define say(a) do {} while(0) -#define say1(a,b) do {} while(0) -#define say2(a,b,c) do {} while(0) +#define say(a) do { /* nothing */ } while (0) +#define say1(a,b) do { /* nothing */ } while (0) +#define say2(a,b,c) do { /* nothing */ } while (0) #endif static const char en85[] = { -- cgit v1.2.1