From 20dd5783a31ea152114a600d925a4528b36ba619 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 10 Feb 2024 01:34:55 +0100 Subject: [PATCH] Tier1: use correct format specifier CCountedStringPoolBase --- r5dev/public/tier1/stringpool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/public/tier1/stringpool.h b/r5dev/public/tier1/stringpool.h index abf4cef1..33de8844 100644 --- a/r5dev/public/tier1/stringpool.h +++ b/r5dev/public/tier1/stringpool.h @@ -344,7 +344,7 @@ inline void CCountedStringPoolBase::SpewStrings() { char* string = m_Elements[i].pString; - DevMsg("String %d: ref:%d %s\n", i, m_Elements[i].nReferenceCount, string == NULL? "EMPTY - ok for slot zero only!" : string); + DevMsg("String %d: ref:%hhu %s\n", i, m_Elements[i].nReferenceCount, string == NULL? "EMPTY - ok for slot zero only!" : string); } DevMsg("\n%d total counted strings.", m_Elements.Count());