diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-31 22:31:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-31 22:31:12 +0000 |
commit | ba928a7a667cbc7ec5538f429bd2de1e5a66f267 (patch) | |
tree | 5345360f74547206be0dd1a22dab0b8d1e2a538a /sbin | |
parent | 17e3333b9af1d805e654bd45ed6982c3be37ea64 (diff) |
typo; tomo@ns1.infinitedata.net
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsck_ext2fs/pass5.c | 6 |
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"); } } |