initdisk.c: format specifier fixes 2

This commit is contained in:
Bernd Boeckmann 2024-02-05 01:47:08 +01:00 committed by Kenneth J Davis
parent 4ffc5c10a5
commit 093dea9a7b

View File

@ -494,7 +494,7 @@ VOID CalculateFATData(ddt * pddt, ULONG NumSectors, UBYTE FileSystem)
if (maxclust > maxcl)
maxclust = maxcl;
DebugPrintf(("FAT: #clu=%lu, fatlen=%lu, maxclu=%lu, limit=%lu\n",
(ULONG)clust, fatlength, maxclust, (ULONG)maxcl));
clust, (ULONG)fatlength, maxclust, (ULONG)maxcl));
if (clust > maxclust - 2)
{
clust = 0;