Add missing '\n's in traces.

This commit is contained in:
Francois Gouget 2007-02-06 10:16:53 +01:00 committed by Alexandre Julliard
parent 609cd30277
commit 0271a09d4c
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ static void test_slist(void)
memset(&slist_header, 0xFF, sizeof(slist_header)); memset(&slist_header, 0xFF, sizeof(slist_header));
pInitializeSListHead(&slist_header); pInitializeSListHead(&slist_header);
ok(memcmp(&test_header, &slist_header, sizeof(SLIST_HEADER)) == 0, ok(memcmp(&test_header, &slist_header, sizeof(SLIST_HEADER)) == 0,
"InitializeSListHead didn't zero-fill list header"); "InitializeSListHead didn't zero-fill list header\n");
size = pQueryDepthSList(&slist_header); size = pQueryDepthSList(&slist_header);
ok(size == 0, "initially created slist has size %d, expected 0\n", size); ok(size == 0, "initially created slist has size %d, expected 0\n", size);

View File

@ -231,7 +231,7 @@ static DWORD CALLBACK DBSB_MMAPLoop(LPVOID data)
SetEvent(hEvent); SetEvent(hEvent);
goto out; goto out;
default: default:
ERR("Unhandled event %s", ALSA_getCmdString(msg)); ERR("Unhandled event %s\n", ALSA_getCmdString(msg));
break; break;
} }
if (hEvent != INVALID_HANDLE_VALUE) if (hEvent != INVALID_HANDLE_VALUE)