Skip to content

Commit 4ffd7de

Browse files
committed
Changed "xxx clusters on the disk" to "xxx total clusters on the disk"
1 parent 2469a29 commit 4ffd7de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/lib/fslib/vfatlib/vfatlib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ VfatChkdsk(
552552
DriveLetter[0] = DriveRoot->Buffer[4] & 0x5F; // 0x5f for Uppercase letter
553553
VfatPrint("Chkdsk complete for Volume %S.\n", DriveLetter);
554554
VfatPrint("%u files on disk.\n", FsCheckTotalFiles);
555-
VfatPrint("%lu clusters on the disk.\n", fs.data_clusters);
555+
VfatPrint("%lu total clusters on the disk.\n", fs.data_clusters);
556556
VfatPrint("%lu clusters available on the disk.\n", free_clusters);
557557
}
558558
else

0 commit comments

Comments
 (0)