diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ufs/ffs/ffs_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_alloc.c b/sys/ufs/ffs/ffs_alloc.c index 8d1d5c0..c0092de 100644 --- a/sys/ufs/ffs/ffs_alloc.c +++ b/sys/ufs/ffs/ffs_alloc.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_alloc.c 8.18 (Berkeley) 5/26/95 - * $Id: ffs_alloc.c,v 1.43 1997/11/22 07:00:40 bde Exp $ + * $Id: ffs_alloc.c,v 1.44 1997/11/22 08:35:45 bde Exp $ */ #include "opt_quota.h" @@ -602,7 +602,7 @@ ffs_valloc(pvp, mode, cred, vpp) /* * Set up a new generation number for this inode. */ - if (ip->i_gen == 0 || ++(ip->i_gen) == 0) + if (ip->i_gen == 0 || ++ip->i_gen == 0) ip->i_gen = random() / 2 + 1; return (0); noinodes: |