Standardize do { ... } while (0) style
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
0d1d6e50cf
commit
987460611a
6
base85.c
6
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[] = {
|
||||
|
Reference in New Issue
Block a user