summaryrefslogtreecommitdiffstats
path: root/sys/miscfs/procfs/procfs_vfsops.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-10-10 07:55:48 +0000
committerphk <phk@FreeBSD.org>1994-10-10 07:55:48 +0000
commitc0f48e68d284829328ce49fd16a2b2eb6467434b (patch)
tree7554aaa733a10acfa4773a846448e6f66d2d6ee3 /sys/miscfs/procfs/procfs_vfsops.c
parent03a02ed1752db367223cc17d6465dcb08f262939 (diff)
downloadFreeBSD-src-c0f48e68d284829328ce49fd16a2b2eb6467434b.zip
FreeBSD-src-c0f48e68d284829328ce49fd16a2b2eb6467434b.tar.gz
Cosmetics. reduce the noise from gcc -Wall.
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
-rw-r--r--sys/miscfs/procfs/procfs_vfsops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c
index 0969ffc..b9250ac 100644
--- a/sys/miscfs/procfs/procfs_vfsops.c
+++ b/sys/miscfs/procfs/procfs_vfsops.c
@@ -36,7 +36,7 @@
*
* @(#)procfs_vfsops.c 8.4 (Berkeley) 1/21/94
*
- * $Id: procfs_vfsops.c,v 1.4 1994/08/18 22:35:14 wollman Exp $
+ * $Id: procfs_vfsops.c,v 1.5 1994/09/21 03:47:06 wollman Exp $
*/
/*
@@ -114,7 +114,8 @@ procfs_unmount(mp, mntflags, p)
flags |= FORCECLOSE;
}
- if (error = vflush(mp, 0, flags))
+ error = vflush(mp, 0, flags);
+ if (error)
return (error);
return (0);
OpenPOWER on IntegriCloud