diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-05-10 18:46:49 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-05-10 18:46:49 +0200 |
commit | 0adb5c94b8230b7a65fc06f90c253576755cedcd (patch) | |
tree | 020c61271d00d0978b8ed799243bb8e1f7ad8474 /src/ChunkBuffer.h | |
parent | Add arries copies tests (diff) | |
download | cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar.gz cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar.bz2 cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar.lz cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar.xz cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.tar.zst cuberite-0adb5c94b8230b7a65fc06f90c253576755cedcd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkBuffer.h | 4 |
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; } } |