From a54018968d85828ef88c44cb6bc3ff37b5ed9449 Mon Sep 17 00:00:00 2001 From: bde Date: Wed, 12 Mar 1997 16:58:35 +0000 Subject: Finished (?) merging with Lite2: cleaned up #include mess. Fixed style bugs in FreeBSD changes. --- sbin/fsck_ifs/pass1.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sbin/fsck_ifs/pass1.c') diff --git a/sbin/fsck_ifs/pass1.c b/sbin/fsck_ifs/pass1.c index 0114c5e..2e34a96 100644 --- a/sbin/fsck_ifs/pass1.c +++ b/sbin/fsck_ifs/pass1.c @@ -42,8 +42,6 @@ static const char sccsid[] = "@(#)pass1.c 8.6 (Berkeley) 4/28/95"; #include #include -#include -#include #include #include @@ -168,7 +166,8 @@ checkinode(inumber, idesc) * Fake ndb value so direct/indirect block checks below * will detect any garbage after symlink string. */ - if ((dp->di_size < sblock.fs_maxsymlinklen) || dp->di_blocks == 0) { + if (dp->di_size < sblock.fs_maxsymlinklen || + dp->di_blocks == 0) { ndb = howmany(dp->di_size, sizeof(ufs_daddr_t)); if (ndb > NDADDR) { j = ndb - NDADDR; -- cgit v1.1