Commit 29f54417 authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Changed some of the message classes.

parent f64b70e5
......@@ -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;
......
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