From a5a87f0847489561f10a692fdb596a83525b8d6c 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 --- src/public/tier1/stringpool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/tier1/stringpool.h b/src/public/tier1/stringpool.h index abf4cef1..33de8844 100644 --- a/src/public/tier1/stringpool.h +++ b/src/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());