diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /archival/gzip.c | |
parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
download | busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.bz2 busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.zip |
style fix (stray space before ';')
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index fdf2a794c..08c660e40 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -49,10 +49,10 @@ aa: 85.1% -- replaced with aa.gz | |||
49 | #ifdef DEBUG | 49 | #ifdef DEBUG |
50 | # define Assert(cond,msg) { if (!(cond)) bb_error_msg(msg); } | 50 | # define Assert(cond,msg) { if (!(cond)) bb_error_msg(msg); } |
51 | # define Trace(x) fprintf x | 51 | # define Trace(x) fprintf x |
52 | # define Tracev(x) {if (verbose) fprintf x ;} | 52 | # define Tracev(x) {if (verbose) fprintf x; } |
53 | # define Tracevv(x) {if (verbose > 1) fprintf x ;} | 53 | # define Tracevv(x) {if (verbose > 1) fprintf x; } |
54 | # define Tracec(c,x) {if (verbose && (c)) fprintf x ;} | 54 | # define Tracec(c,x) {if (verbose && (c)) fprintf x; } |
55 | # define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x ;} | 55 | # define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x; } |
56 | #else | 56 | #else |
57 | # define Assert(cond,msg) | 57 | # define Assert(cond,msg) |
58 | # define Trace(x) | 58 | # define Trace(x) |