Use correct PRIu32 format spec for uint32_t usedTotal

This commit is contained in:
Rangi
2026-07-10 17:01:43 -04:00
parent 118f1f7543
commit 0e1e5e80f6
+1 -1
View File
@@ -527,7 +527,7 @@ static void writeMapSummary() {
fprintf(
mapFile,
"\t%s: %" PRId32 " byte%s used / %" PRId32 " free",
"\t%s: %" PRIu32 " byte%s used / %" PRIu32 " free",
sectionTypeInfo[type].name.c_str(),
usedTotal,
usedTotal == 1 ? "" : "s",