svn commit: r349047 - head/sbin/fsck_msdosfs

Xin LI delphij at FreeBSD.org
Sat Jun 15 06:51:47 UTC 2019


Author: delphij
Date: Sat Jun 15 06:51:46 2019
New Revision: 349047
URL: https://svnweb.freebsd.org/changeset/base/349047

Log:
  Blankspace.  No actual code change.
  
  MFC after:	2 weeks

Modified:
  head/sbin/fsck_msdosfs/boot.c

Modified: head/sbin/fsck_msdosfs/boot.c
==============================================================================
--- head/sbin/fsck_msdosfs/boot.c	Sat Jun 15 04:30:13 2019	(r349046)
+++ head/sbin/fsck_msdosfs/boot.c	Sat Jun 15 06:51:46 2019	(r349047)
@@ -49,7 +49,7 @@ readboot(int dosfs, struct bootblock *boot)
 	u_char backup[DOSBOOTBLOCKSIZE];
 	int ret = FSOK;
 	int i;
-	
+
 	if ((size_t)read(dosfs, block, sizeof block) != sizeof block) {
 		perr("could not read boot block");
 		return FSFATAL;
@@ -219,7 +219,7 @@ readboot(int dosfs, struct bootblock *boot)
 	boot->NumClusters = (boot->NumSectors - boot->ClusterOffset) /
 	    boot->bpbSecPerClust;
 
-	if (boot->flags&FAT32)
+	if (boot->flags & FAT32)
 		boot->ClustMask = CLUST32_MASK;
 	else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK))
 		boot->ClustMask = CLUST12_MASK;


More information about the svn-src-head mailing list