summaryrefslogtreecommitdiffstats
path: root/sys/fs/unionfs
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2012-03-13 10:04:13 +0000
committerkevlo <kevlo@FreeBSD.org>2012-03-13 10:04:13 +0000
commitaf6e15978bd9add0d2d5418ff226ef159c430d36 (patch)
tree68dc9cb24fb4e9dcea1141e07527c0c5e934fa98 /sys/fs/unionfs
parentffaa080e67a7f9d93841c0fdff2afac0b9b099b4 (diff)
downloadFreeBSD-src-af6e15978bd9add0d2d5418ff226ef159c430d36.zip
FreeBSD-src-af6e15978bd9add0d2d5418ff226ef159c430d36.tar.gz
Use NULL instead of 0
Diffstat (limited to 'sys/fs/unionfs')
-rw-r--r--sys/fs/unionfs/union_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c
index 96258fb..3c37d8f 100644
--- a/sys/fs/unionfs/union_vfsops.c
+++ b/sys/fs/unionfs/union_vfsops.c
@@ -352,7 +352,7 @@ unionfs_unmount(struct mount *mp, int mntflags)
return (error);
free(ump, M_UNIONFSMNT);
- mp->mnt_data = 0;
+ mp->mnt_data = NULL;
return (0);
}
OpenPOWER on IntegriCloud