From e9e76d823fa12e2e62cf9274939fec34dfe00e0c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 4 Sep 2014 10:01:17 +0200 Subject: [PATCH] comdlg32/tests: Add a trailing '\n' to an ok() call. --- dlls/comdlg32/tests/itemdlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comdlg32/tests/itemdlg.c b/dlls/comdlg32/tests/itemdlg.c index 6a6c450d43a..d3efb88b5e3 100644 --- a/dlls/comdlg32/tests/itemdlg.c +++ b/dlls/comdlg32/tests/itemdlg.c @@ -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; } }