1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Tier1: use correct format specifier CCountedStringPoolBase

This commit is contained in:
Kawe Mazidjatari 2024-02-10 01:34:55 +01:00
parent a1fd351ccc
commit a5a87f0847

@ -344,7 +344,7 @@ inline void CCountedStringPoolBase<T>::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());