aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/udf
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2012-07-22 15:40:31 +0000
committerKevin Lo <kevlo@FreeBSD.org>2012-07-22 15:40:31 +0000
commitf7a3729c91b49ca82ad9b92a41faec2fe8a88a00 (patch)
tree520b16869f4028f7313c2c525c5e8a2e396d6a8d /sys/fs/udf
parent481af8b93308cdbab535288574c978e2faed6d01 (diff)
downloadsrc-f7a3729c91b49ca82ad9b92a41faec2fe8a88a00.tar.gz
src-f7a3729c91b49ca82ad9b92a41faec2fe8a88a00.zip
Use NULL instead of 0 for pointers
Notes
Notes: svn path=/head/; revision=238697
Diffstat (limited to 'sys/fs/udf')
-rw-r--r--sys/fs/udf/udf_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/udf/udf_vfsops.c b/sys/fs/udf/udf_vfsops.c
index bb2c09d31c5b..ddf3b997d1b3 100644
--- a/sys/fs/udf/udf_vfsops.c
+++ b/sys/fs/udf/udf_vfsops.c
@@ -190,7 +190,7 @@ udf_mount(struct mount *mp)
{
struct vnode *devvp; /* vnode of the mount device */
struct thread *td;
- struct udf_mnt *imp = 0;
+ struct udf_mnt *imp = NULL;
struct vfsoptlist *opts;
char *fspec, *cs_disk, *cs_local;
int error, len, *udf_flags;