diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-17 16:17:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-17 16:17:40 +0000 |
commit | 6b0b18cad7de70d563398d1df15317c3c5f88445 (patch) | |
tree | e01901296fd58bf43519427e0ec2861bdc86de71 /usr.bin/compress/zopen.c | |
parent | 5d625d52752063a162b9529b504a99894a4c8f8c (diff) |
spacing
Diffstat (limited to 'usr.bin/compress/zopen.c')
-rw-r--r-- | usr.bin/compress/zopen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/compress/zopen.c b/usr.bin/compress/zopen.c index d1a94da9cdb..2f29874b849 100644 --- a/usr.bin/compress/zopen.c +++ b/usr.bin/compress/zopen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zopen.c,v 1.14 2003/08/03 01:26:46 deraadt Exp $ */ +/* $OpenBSD: zopen.c,v 1.15 2005/04/17 16:17:39 deraadt Exp $ */ /* $NetBSD: zopen.c,v 1.5 1995/03/26 09:44:53 glass Exp $ */ /*- @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)zopen.c 8.1 (Berkeley) 6/27/93"; #else const char z_rcsid[] = - "$OpenBSD: zopen.c,v 1.14 2003/08/03 01:26:46 deraadt Exp $"; + "$OpenBSD: zopen.c,v 1.15 2005/04/17 16:17:39 deraadt Exp $"; #endif /*- @@ -433,7 +433,7 @@ output(struct s_zstate *zs, code_int ocode) zs->zs_maxcode = zs->zs_maxmaxcode; else zs->zs_maxcode = - MAXCODE(zs->zs_n_bits); + MAXCODE(zs->zs_n_bits); } } @@ -624,7 +624,7 @@ getcode(struct s_zstate *zs) for (bp = zs->zs_buf; zs->zs_bp < zs->zs_ebp; *bp++ = *zs->zs_bp++); if ((bits = read(zs->zs_fd, bp, ZBUFSIZ - - (bp - zs->zs_buf))) < 0) + (bp - zs->zs_buf))) < 0) return -1; zs->zs_in_count += bits; zs->zs_bp = zs->zs_buf; |