Correct gcc parenthesis warnings

This commit is contained in:
GAMMACASE 2025-06-05 20:13:17 +03:00
parent 9cbdadbda5
commit cc25f2d093

View File

@ -112,7 +112,7 @@ inline void CUtlMemoryBlockAllocator::RemoveAll( size_t nSize )
{
accumulated_total += m_MemPages[i].m_nTotalSize;
if(removed_at != -1 || nSize && accumulated_total > nSize)
if(removed_at != -1 || (nSize && accumulated_total > nSize))
{
CRawAllocator::Free( m_MemPages[i].m_pMemory );