From 0e1e5e80f64f6a0ff2497f7fbdd96b6867ca43b9 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 10 Jul 2026 17:01:43 -0400 Subject: [PATCH] Use correct `PRIu32` format spec for `uint32_t usedTotal` --- src/link/output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/link/output.cpp b/src/link/output.cpp index 3a6f417e..fbb36bb2 100644 --- a/src/link/output.cpp +++ b/src/link/output.cpp @@ -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",