svn commit: r323430 - stable/11/sys/fs/msdosfs

Konstantin Belousov kib at FreeBSD.org
Mon Sep 11 08:18:57 UTC 2017


Author: kib
Date: Mon Sep 11 08:18:56 2017
New Revision: 323430
URL: https://svnweb.freebsd.org/changeset/base/323430

Log:
  MFC r322984:
  Style.

Modified:
  stable/11/sys/fs/msdosfs/msdosfs_fat.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/fs/msdosfs/msdosfs_fat.c
==============================================================================
--- stable/11/sys/fs/msdosfs/msdosfs_fat.c	Mon Sep 11 08:16:38 2017	(r323429)
+++ stable/11/sys/fs/msdosfs/msdosfs_fat.c	Mon Sep 11 08:18:56 2017	(r323430)
@@ -888,12 +888,12 @@ freeclusterchain(struct msdosfsmount *pmp, u_long clus
 int
 fillinusemap(struct msdosfsmount *pmp)
 {
-	struct buf *bp = NULL;
-	u_long cn, readcn;
+	struct buf *bp;
+	u_long bn, bo, bsize, byteoffset, cn, readcn;
 	int error;
-	u_long bn, bo, bsize, byteoffset;
 
 	MSDOSFS_ASSERT_MP_LOCKED(pmp);
+	bp = NULL;
 
 	/*
 	 * Mark all clusters in use, we mark the free ones in the fat scan


More information about the svn-src-all mailing list