Commit 9a4e519a authored by Alexandre Julliard's avatar Alexandre Julliard

dbghelp: Avoid size_t in a trace.

parent 83d18602
......@@ -110,7 +110,7 @@ void* pool_alloc(struct pool* pool, size_t len)
size = max( pool->arena_size, len + sizeof(struct pool_arena) );
arena = HeapAlloc(GetProcessHeap(), 0, size);
if (!arena) {ERR("OOM for %u\n", size);return NULL;}
if (!arena) return NULL;
ret = arena + 1;
arena->current = (char*)ret + len;
......
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