1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

Correct gcc parenthesis warnings

This commit is contained in:
GAMMACASE
2025-06-05 20:13:17 +03:00
parent bdb915aaae
commit 4ab8a0466d

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 );