diff --git a/dlls/mscms/tests/profile.c b/dlls/mscms/tests/profile.c index 1d4b3f83704..0da4172cdb9 100644 --- a/dlls/mscms/tests/profile.c +++ b/dlls/mscms/tests/profile.c @@ -649,7 +649,7 @@ static void test_OpenColorProfileA() handle = OpenColorProfileA( &profile, PROFILE_READWRITE, 0, 0 ); ok( handle == NULL, "OpenColorProfileA() failed (%ld)\n", GetLastError() ); - ok ( !CloseColorProfile( NULL ), "CloseColorProfile() succeeded" ); + ok ( !CloseColorProfile( NULL ), "CloseColorProfile() succeeded\n" ); if (standardprofile) { @@ -697,7 +697,7 @@ static void test_OpenColorProfileW() handle = OpenColorProfileW( &profile, PROFILE_READWRITE, 0, 0 ); ok( handle == NULL, "OpenColorProfileW() failed (%ld)\n", GetLastError() ); - ok ( !CloseColorProfile( NULL ), "CloseColorProfile() succeeded" ); + ok ( !CloseColorProfile( NULL ), "CloseColorProfile() succeeded\n" ); if (standardprofileW) { diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c index 4b1568e0f8a..889fa271578 100644 --- a/dlls/msvcrt/tests/file.c +++ b/dlls/msvcrt/tests/file.c @@ -261,7 +261,7 @@ static void test_file_inherit( const char* selfname ) char buffer[16]; fd = open ("fdopen.tst", O_CREAT | O_RDWR | O_BINARY, _S_IREAD |_S_IWRITE); - ok(fd != -1, "Couldn't create test file\n "); + ok(fd != -1, "Couldn't create test file\n"); arg_v[0] = selfname; arg_v[1] = "tests/file.c"; arg_v[2] = buffer; sprintf(buffer, "%d", fd); @@ -274,7 +274,7 @@ static void test_file_inherit( const char* selfname ) ok(unlink("fdopen.tst") != 1, "Couldn't unlink\n"); fd = open ("fdopen.tst", O_CREAT | O_RDWR | O_BINARY | O_NOINHERIT, _S_IREAD |_S_IWRITE); - ok(fd != -1, "Couldn't create test file\n "); + ok(fd != -1, "Couldn't create test file\n"); arg_v[0] = selfname; arg_v[1] = "tests/file.c"; arg_v[2] = buffer; sprintf(buffer, "%d", fd); diff --git a/dlls/rsaenh/tests/rsaenh.c b/dlls/rsaenh/tests/rsaenh.c index 89db5f74897..fac81b02010 100644 --- a/dlls/rsaenh/tests/rsaenh.c +++ b/dlls/rsaenh/tests/rsaenh.c @@ -130,7 +130,7 @@ static BOOL derive_key(ALG_ID aiAlgid, HCRYPTKEY *phKey, DWORD len) result = CryptCreateHash(hProv, CALG_MD2, 0, 0, &hHash); if (!result) { /* rsaenh compiled without OpenSSL */ - ok(GetLastError()==NTE_BAD_ALGID, "%08lx", GetLastError()); + ok(GetLastError()==NTE_BAD_ALGID, "%08lx\n", GetLastError()); return FALSE; } ok(result, "%08lx\n", GetLastError()); diff --git a/dlls/user/tests/msg.c b/dlls/user/tests/msg.c index d512614c1ea..79e20fcb801 100644 --- a/dlls/user/tests/msg.c +++ b/dlls/user/tests/msg.c @@ -4056,8 +4056,8 @@ static void test_timers(void) NULL, NULL, 0); info.id = SetTimer(info.hWnd,TIMER_ID,10000,tfunc); - ok(info.id, "SetTimer failed"); - ok(info.id==TIMER_ID, "SetTimer timer ID different"); + ok(info.id, "SetTimer failed\n"); + ok(info.id==TIMER_ID, "SetTimer timer ID different\n"); info.handles[0] = CreateEvent(NULL,0,0,NULL); info.handles[1] = CreateThread(NULL,0,timer_thread_proc,&info,0,&id);