diff options
author | Denis Vlasenko | 2007-07-21 15:08:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-07-21 15:08:09 +0000 |
commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /archival/gzip.c | |
parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
download | busybox-b71c668c577f7780362f7ea632895c11e3760d66.zip busybox-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz |
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 fdf2a79..08c660e 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -49,10 +49,10 @@ aa: 85.1% -- replaced with aa.gz #ifdef DEBUG # define Assert(cond,msg) { if (!(cond)) bb_error_msg(msg); } # define Trace(x) fprintf x -# define Tracev(x) {if (verbose) fprintf x ;} -# define Tracevv(x) {if (verbose > 1) fprintf x ;} -# define Tracec(c,x) {if (verbose && (c)) fprintf x ;} -# define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x ;} +# define Tracev(x) {if (verbose) fprintf x; } +# define Tracevv(x) {if (verbose > 1) fprintf x; } +# define Tracec(c,x) {if (verbose && (c)) fprintf x; } +# define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x; } #else # define Assert(cond,msg) # define Trace(x) |