diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-05 18:22:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-08-05 18:22:18 +0000 |
commit | 4da4ef4a1ca9ed05edffca9e095f4700fe76400a (patch) | |
tree | 38b2a134b34818e6f0369298c9f00eeafef1e583 /usr.bin/compress/main.c | |
parent | eb53594c2f935a4976ac6c589ee1d838ee0e6757 (diff) |
spacing
Diffstat (limited to 'usr.bin/compress/main.c')
-rw-r--r-- | usr.bin/compress/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/compress/main.c b/usr.bin/compress/main.c index 16c9bf0a5e3..34970dcf22b 100644 --- a/usr.bin/compress/main.c +++ b/usr.bin/compress/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.43 2003/07/29 18:33:11 millert Exp $ */ +/* $OpenBSD: main.c,v 1.44 2003/08/05 18:22:17 deraadt Exp $ */ static const char copyright[] = "@(#) Copyright (c) 1992, 1993\n\ @@ -35,7 +35,7 @@ static const char license[] = #if 0 static char sccsid[] = "@(#)compress.c 8.2 (Berkeley) 1/7/94"; #else -static const char main_rcsid[] = "$OpenBSD: main.c,v 1.43 2003/07/29 18:33:11 millert Exp $"; +static const char main_rcsid[] = "$OpenBSD: main.c,v 1.44 2003/08/05 18:22:17 deraadt Exp $"; #endif #endif /* not lint */ @@ -511,7 +511,7 @@ compress(const char *in, char *out, const struct compressor *method, if (!error && verbose > 0) verbose_info(out, info.total_out, info.total_in, info.hlen); - + return (error); } @@ -808,7 +808,7 @@ verbose_info(const char *file, off_t compressed, off_t uncompressed, (uncompressed - compressed) * 100.0 / uncompressed, file); } compressed += hlen; - fprintf(stderr, "%lld bytes in, %lld bytes out\n", + fprintf(stderr, "%lld bytes in, %lld bytes out\n", (long long)(decomp ? compressed : uncompressed), (long long)(decomp ? uncompressed : compressed)); } |