aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2013-07-02 18:45:37 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2013-07-02 18:45:37 +0000
commit5f3a9c4000b2bf5c4fc8bb0f56b7d127ebe443e9 (patch)
treeaf99917a67da745bc6db3c89ff774fc8d4caaf46 /sys/ufs
parent1bf9e66cbcba6ac648a6324f76bab3ec8d1990f3 (diff)
downloadsrc-5f3a9c4000b2bf5c4fc8bb0f56b7d127ebe443e9.tar.gz
src-5f3a9c4000b2bf5c4fc8bb0f56b7d127ebe443e9.zip
Style fix: spaces.
Cleanup the incomplete revert. Reported by: bde MFC after: 4 weeks
Notes
Notes: svn path=/head/; revision=252515
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index 890aa789b0a1..57f092c17f8f 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -1791,7 +1791,7 @@ ffs_vgetf(mp, ino, flags, vpp, ffs_flags)
* already have one. This should only happen on old filesystems.
*/
if (ip->i_gen == 0) {
- ip->i_gen = arc4random()/2 + 1;
+ ip->i_gen = arc4random() / 2 + 1;
if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
ip->i_flag |= IN_MODIFIED;
DIP_SET(ip, i_gen, ip->i_gen);