summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-23 21:07:31 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-23 21:07:31 +0000
commitd690375bcc9c23b39c2faf59138d7d39eaa7e62e (patch)
tree3b1c4f6bc97f260f7c09929152b1e7047410e2c3
parentc5bfcd521f59cab8669592f0c298d61e1f87f246 (diff)
knf
-rw-r--r--usr.bin/compress/gzopen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/compress/gzopen.c b/usr.bin/compress/gzopen.c
index e902d811ccf..df8007656ec 100644
--- a/usr.bin/compress/gzopen.c
+++ b/usr.bin/compress/gzopen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gzopen.c,v 1.20 2003/12/16 23:25:02 henning Exp $ */
+/* $OpenBSD: gzopen.c,v 1.21 2004/02/23 21:07:30 deraadt Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -60,7 +60,7 @@
#ifndef SMALL
const char gz_rcsid[] =
- "$OpenBSD: gzopen.c,v 1.20 2003/12/16 23:25:02 henning Exp $";
+ "$OpenBSD: gzopen.c,v 1.21 2004/02/23 21:07:30 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -201,7 +201,7 @@ gz_close(void *cookie, struct z_info *info)
err = deflateEnd(&s->z_stream);
#else
err = -1;
-#endif;
+#endif
else if (s->z_mode == 'r')
err = inflateEnd(&s->z_stream);
}