summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-31 22:31:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-31 22:31:12 +0000
commitba928a7a667cbc7ec5538f429bd2de1e5a66f267 (patch)
tree5345360f74547206be0dd1a22dab0b8d1e2a538a /sbin
parent17e3333b9af1d805e654bd45ed6982c3be37ea64 (diff)
typo; tomo@ns1.infinitedata.net
Diffstat (limited to 'sbin')
-rw-r--r--sbin/fsck_ext2fs/pass5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ext2fs/pass5.c b/sbin/fsck_ext2fs/pass5.c
index e6d2f0a0af4..3fd00aa5bb1 100644
--- a/sbin/fsck_ext2fs/pass5.c
+++ b/sbin/fsck_ext2fs/pass5.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pass5.c,v 1.5 2000/04/26 23:26:06 jasoni Exp $ */
+/* $OpenBSD: pass5.c,v 1.6 2001/01/31 22:31:11 deraadt Exp $ */
/* $NetBSD: pass5.c,v 1.1 1997/06/11 11:21:58 bouyer Exp $ */
/*
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)pass5.c 8.6 (Berkeley) 11/30/94";
#if 0
static char rcsid[] = "$NetBSD: pass5.c,v 1.1 1997/06/11 11:21:58 bouyer Exp $";
#else
-static char rcsid[] = "$OpenBSD: pass5.c,v 1.5 2000/04/26 23:26:06 jasoni Exp $";
+static char rcsid[] = "$OpenBSD: pass5.c,v 1.6 2001/01/31 22:31:11 deraadt Exp $";
#endif
#endif
#endif /* not lint */
@@ -255,7 +255,7 @@ print_bmap(map, size)
while (i < size) {
printf("%u: ",i);
for (j = 0; j < 16; j++, i++)
- printf("%2x ", (u_int)map[i]) & 0xff;
+ printf("%2x ", (u_int)map[i] & 0xff);
printf("\n");
}
}