aboutsummaryrefslogtreecommitdiffstats
path: root/code/botlib/l_memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/botlib/l_memory.c')
-rw-r--r--code/botlib/l_memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/botlib/l_memory.c b/code/botlib/l_memory.c
index 0dad5b6..da063ab 100644
--- a/code/botlib/l_memory.c
+++ b/code/botlib/l_memory.c
@@ -100,7 +100,7 @@ void *GetMemory(unsigned long size)
{
void *ptr;
memoryblock_t *block;
- assert(botimport.GetMemory); // bk001129 - was NULL'ed
+ assert(botimport.GetMemory);
ptr = botimport.GetMemory(size + sizeof(memoryblock_t));
block = (memoryblock_t *) ptr;
block->id = MEM_ID;