svn commit: r252515 - head/sys/ufs/ffs
Pedro F. Giffuni
pfg at FreeBSD.org
Tue Jul 2 18:45:38 UTC 2013
Author: pfg
Date: Tue Jul 2 18:45:37 2013
New Revision: 252515
URL: http://svnweb.freebsd.org/changeset/base/252515
Log:
Style fix: spaces.
Cleanup the incomplete revert.
Reported by: bde
MFC after: 4 weeks
Modified:
head/sys/ufs/ffs/ffs_vfsops.c
Modified: head/sys/ufs/ffs/ffs_vfsops.c
==============================================================================
--- head/sys/ufs/ffs/ffs_vfsops.c Tue Jul 2 17:34:34 2013 (r252514)
+++ head/sys/ufs/ffs/ffs_vfsops.c Tue Jul 2 18:45:37 2013 (r252515)
@@ -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);
More information about the svn-src-all
mailing list