summaryrefslogtreecommitdiffstats
path: root/src/ChunkBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ChunkBuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkBuffer.h b/src/ChunkBuffer.h
index 410532232..b1bd024d5 100644
--- a/src/ChunkBuffer.h
+++ b/src/ChunkBuffer.h
@@ -124,7 +124,7 @@ public:
m_Sections[Section] = Allocate();
if(!m_Sections[Section])
{
- ASSERT("Failed to allocate a new section in Chunkbuffer");
+ ASSERT(!"Failed to allocate a new section in Chunkbuffer");
return;
}
}
@@ -169,7 +169,7 @@ public:
m_Sections[Section] = Allocate();
if(!m_Sections[Section])
{
- ASSERT("Failed to allocate a new section in Chunkbuffer");
+ ASSERT(!"Failed to allocate a new section in Chunkbuffer");
return;
}
}