Add missing linebreak to ok message in multiple patches.

This commit is contained in:
Sebastian Lackner
2015-08-17 08:37:22 +02:00
parent 68bdb355dc
commit cc04af2457
3 changed files with 3 additions and 3 deletions

View File

@@ -127,7 +127,7 @@ index 5cbab71..7a97ae5 100644
+ invalid_handle_exceptions = 0;
+ res = CloseHandle((HANDLE)0xdeadbeef);
+ ok(!res, "CloseHandle(0xdeadbeef) unexpectedly succeeded\n");
+ ok(GetLastError() == ERROR_INVALID_HANDLE, "wrong error code %d instead of %d",
+ ok(GetLastError() == ERROR_INVALID_HANDLE, "wrong error code %d instead of %d\n",
+ GetLastError(), ERROR_INVALID_HANDLE);
+ ok(invalid_handle_exceptions == numexc, "CloseHandle generated %d exceptions, expected %d\n",
+ invalid_handle_exceptions, numexc);