Skip to content

Commit 093dea9

Browse files
boeckmannPerditionC
authored andcommitted
initdisk.c: format specifier fixes 2
1 parent 4ffc5c1 commit 093dea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/initdisk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ VOID CalculateFATData(ddt * pddt, ULONG NumSectors, UBYTE FileSystem)
494494
if (maxclust > maxcl)
495495
maxclust = maxcl;
496496
DebugPrintf(("FAT: #clu=%lu, fatlen=%lu, maxclu=%lu, limit=%lu\n",
497-
(ULONG)clust, fatlength, maxclust, (ULONG)maxcl));
497+
clust, (ULONG)fatlength, maxclust, (ULONG)maxcl));
498498
if (clust > maxclust - 2)
499499
{
500500
clust = 0;

0 commit comments

Comments
 (0)