Commit 9f2baf1d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

setupapi/tests: Add a trailing '\n' to a couple of ok() calls.

parent c05a2ae4
...@@ -63,13 +63,13 @@ static void test_create_device_list_ex(void) ...@@ -63,13 +63,13 @@ static void test_create_device_list_ex(void)
"Got unexpected error %#x.\n", GetLastError()); "Got unexpected error %#x.\n", GetLastError());
set = SetupDiCreateDeviceInfoListExW(NULL, NULL, NULL, NULL); set = SetupDiCreateDeviceInfoListExW(NULL, NULL, NULL, NULL);
ok(set != INVALID_HANDLE_VALUE, "Failed to create device list, error %#x.", GetLastError()); ok(set != INVALID_HANDLE_VALUE, "Failed to create device list, error %#x.\n", GetLastError());
ret = SetupDiDestroyDeviceInfoList(set); ret = SetupDiDestroyDeviceInfoList(set);
ok(ret, "Failed to destroy device list, error %#x.\n", GetLastError()); ok(ret, "Failed to destroy device list, error %#x.\n", GetLastError());
set = SetupDiCreateDeviceInfoListExW(NULL, NULL, empty, NULL); set = SetupDiCreateDeviceInfoListExW(NULL, NULL, empty, NULL);
ok(set != INVALID_HANDLE_VALUE, "Failed to create device list, error %#x.", GetLastError()); ok(set != INVALID_HANDLE_VALUE, "Failed to create device list, error %#x.\n", GetLastError());
ret = SetupDiDestroyDeviceInfoList(set); ret = SetupDiDestroyDeviceInfoList(set);
ok(ret, "Failed to destroy device list, error %#x.\n", GetLastError()); ok(ret, "Failed to destroy device list, error %#x.\n", GetLastError());
......
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