comdlg32/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2014-09-04 10:01:17 +02:00 committed by Alexandre Julliard
parent 582f2640d2
commit e9e76d823f
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ static LRESULT CALLBACK test_customize_dlgproc(HWND hwnd, UINT message, WPARAM w
case IDT_CLOSEDIALOG:
/* Calling IFileDialog_Close here does not work */
br = PostMessageW(hwnd, WM_COMMAND, IDCANCEL, 0);
ok(br, "Failed");
ok(br, "Failed\n");
return TRUE;
}
}