svn commit: r231932 - head/sys/fs/cd9660

Kevin Lo kevlo at FreeBSD.org
Mon Feb 20 09:56:15 UTC 2012


Author: kevlo
Date: Mon Feb 20 09:56:14 2012
New Revision: 231932
URL: http://svn.freebsd.org/changeset/base/231932

Log:
  Remove an unnecessary cast.

Modified:
  head/sys/fs/cd9660/cd9660_vfsops.c

Modified: head/sys/fs/cd9660/cd9660_vfsops.c
==============================================================================
--- head/sys/fs/cd9660/cd9660_vfsops.c	Mon Feb 20 09:32:32 2012	(r231931)
+++ head/sys/fs/cd9660/cd9660_vfsops.c	Mon Feb 20 09:56:14 2012	(r231932)
@@ -205,7 +205,7 @@ iso_mountfs(devvp, mp)
 	struct vnode *devvp;
 	struct mount *mp;
 {
-	struct iso_mnt *isomp = (struct iso_mnt *)0;
+	struct iso_mnt *isomp = NULL;
 	struct buf *bp = NULL;
 	struct buf *pribp = NULL, *supbp = NULL;
 	struct cdev *dev;


More information about the svn-src-head mailing list