diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:14:07 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 02:14:07 +0000 |
commit | 5913f0e4946806651e8a6067347fa6eba82609d4 (patch) | |
tree | 56e7e5b01625395ac882f9e8a0aa63663e645ade /ufs-fsck | |
parent | abd78d79f13f61044244822d80d15fa5a1fd6dbb (diff) |
(pass1): Remove assignment from if test.
Diffstat (limited to 'ufs-fsck')
-rw-r--r-- | ufs-fsck/pass1.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ufs-fsck/pass1.c b/ufs-fsck/pass1.c index 621d40ec..c97ffc33 100644 --- a/ufs-fsck/pass1.c +++ b/ufs-fsck/pass1.c @@ -1,5 +1,5 @@ /* Pass one of GNU fsck -- count blocks and verify inodes - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1995 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -63,7 +63,8 @@ pass1 () int wasbad = 0; /* Check to see if this block is in range */ - if (outofrange = check_range (bno, nfrags)) + outofrange = check_range (bno, nfrags); + if (outofrange) { blkerror = 1; wasbad = 1; |