mirror of
https://github.com/gbdev/rgbds.git
synced 2026-08-30 02:25:15 +00:00
Use correct PRIu32 format spec for uint32_t usedTotal
This commit is contained in:
+1
-1
@@ -527,7 +527,7 @@ static void writeMapSummary() {
|
|||||||
|
|
||||||
fprintf(
|
fprintf(
|
||||||
mapFile,
|
mapFile,
|
||||||
"\t%s: %" PRId32 " byte%s used / %" PRId32 " free",
|
"\t%s: %" PRIu32 " byte%s used / %" PRIu32 " free",
|
||||||
sectionTypeInfo[type].name.c_str(),
|
sectionTypeInfo[type].name.c_str(),
|
||||||
usedTotal,
|
usedTotal,
|
||||||
usedTotal == 1 ? "" : "s",
|
usedTotal == 1 ? "" : "s",
|
||||||
|
|||||||
Reference in New Issue
Block a user