Kai Blin : dbghelp: Upgrade FIXME to ERR.

Alexandre Julliard julliard at winehq.org
Mon Nov 24 09:16:39 CST 2008


Module: wine
Branch: master
Commit: 4dedbd404c982069199c003cf620843c0c5d558c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4dedbd404c982069199c003cf620843c0c5d558c

Author: Kai Blin <kai.blin at gmail.com>
Date:   Sun Nov 23 22:07:36 2008 +0100

dbghelp: Upgrade FIXME to ERR.

---

 dlls/dbghelp/storage.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/dbghelp/storage.c b/dlls/dbghelp/storage.c
index 88c9b1d..04ea378 100644
--- a/dlls/dbghelp/storage.c
+++ b/dlls/dbghelp/storage.c
@@ -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;




More information about the wine-cvs mailing list