Add '\n' at the end of traces.

diff --git a/objects/palette.c b/objects/palette.c
index 78ed5b6..1281945 100644
--- a/objects/palette.c
+++ b/objects/palette.c
@@ -71,7 +71,7 @@
     if (palObj)
     {
         if (!(palObj->mapping = HeapAlloc( GetProcessHeap(), 0, sizeof(int) * 20 )))
-            ERR("Can not create palette mapping -- out of memory!");
+            ERR("Can not create palette mapping -- out of memory!\n");
         GDI_ReleaseObj( hpalette );
     }
     return hpalette;
@@ -333,7 +333,7 @@
                                     mapping, cEntries * sizeof(int) );
 	if(newMap == NULL) 
         {
-            ERR("Can not resize mapping -- out of memory!");
+            ERR("Can not resize mapping -- out of memory!\n");
             GDI_ReleaseObj( hPal );
             return FALSE;
         }