diff options
| author | Junio C Hamano <gitster@pobox.com> | 2010-08-12 18:07:09 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2010-08-12 18:07:09 -0700 |
| commit | 642f7108f68ef622b338d27d94a956e32c8567dd (patch) | |
| tree | 32972655c14bdbd803e3842cb2220b9045632199 /base85.c | |
| parent | 7980e41746bc5de91eea775f9142ce44b1100361 (diff) | |
| parent | 452c6d506b1a6dcf24d4ceaa592afc39c1c1a60e (diff) | |
Merge branch 'maint'
* maint:
push: mention "git pull" in error message for non-fast forwards
Standardize do { ... } while (0) style
t/t7003: replace \t with literal tab in sed expression
index-pack: Don't follow replace refs.
Diffstat (limited to 'base85.c')
| -rw-r--r-- | base85.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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[] = { |
