CVSROOT: /cvs Module name: src Changes by: [email protected] 2010/09/23 12:40:00
Modified files:
sys/msdosfs : msdosfs_vfsops.c
sys/ufs/ext2fs : ext2fs_vfsops.c
Log message:
Change:
/* something */
if (error) {
VOP_UNLOCK();
return;
}
VOP_UNLOCK();
to the clearer and shorter:
VOP_UNLOCK();
if (error)
return;
ok thib@, jsing@ as part of a larger diff.
