From 9a4e519aeb90c3f36947ec17aad2bc2b690541d4 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 12 Feb 2009 15:28:33 +0100 Subject: [PATCH] dbghelp: Avoid size_t in a trace. --- dlls/dbghelp/storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/storage.c b/dlls/dbghelp/storage.c index d3f59494ab8..d6878625b90 100644 --- a/dlls/dbghelp/storage.c +++ b/dlls/dbghelp/storage.c @@ -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;