Commit 4dedbd40 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

dbghelp: Upgrade FIXME to ERR.

parent 632d3465
......@@ -96,7 +96,7 @@ void* pool_alloc(struct pool* pool, unsigned len)
}
arena = HeapAlloc(GetProcessHeap(), 0, pool->arena_size);
if (!arena) {FIXME("OOM\n");return NULL;}
if (!arena) {ERR("OOM\n");return NULL;}
ret = (char*)arena + sizeof(*arena);
arena->next = pool->first;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment