From 29f54417b7a81af9d828cd1c463dbe461cc333d8 Mon Sep 17 00:00:00 2001 From: Huw D M Davies Date: Sat, 14 Nov 1998 16:48:29 +0000 Subject: [PATCH] Changed some of the message classes. --- memory/local.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/memory/local.c b/memory/local.c index 7a50001d6d0..bcd34e329bc 100644 --- a/memory/local.c +++ b/memory/local.c @@ -787,7 +787,7 @@ static HLOCAL16 LOCAL_FindFreeBlock( HANDLE16 ds, WORD size ) if (arena == pArena->free_next) break; if (pArena->size >= size) return arena; } - ERR(local, "not enough space\n" ); + TRACE(local, "not enough space\n" ); LOCAL_PrintHeap(ds); return 0; } @@ -830,13 +830,13 @@ static HLOCAL16 LOCAL_GetBlock( HANDLE16 ds, WORD size, WORD flags ) } if (arena == 0) { if (ds == GDI_HeapSel) { - WARN(local, "not enough space in GDI local heap " + ERR(local, "not enough space in GDI local heap " "(%04x) for %d bytes\n", ds, size ); } else if (ds == USER_HeapSel) { - WARN(local, "not enough space in USER local heap " + ERR(local, "not enough space in USER local heap " "(%04x) for %d bytes\n", ds, size ); } else { - WARN(local, "not enough space in local heap " + ERR(local, "not enough space in local heap " "%04x for %d bytes\n", ds, size ); } return 0;