Module: wine Branch: master Commit: d5485d6ebb31b1dc62dd398c1f85547649f7158d URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5485d6ebb31b1dc62dd398c1f...
Author: Francois Gouget fgouget@free.fr Date: Sat Jan 7 14:44:32 2017 +0100
hlink/tests: Add a trailing '\n' to an ok() call.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/hlink/tests/hlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/hlink/tests/hlink.c b/dlls/hlink/tests/hlink.c index 22cfd10..50f61d5 100644 --- a/dlls/hlink/tests/hlink.c +++ b/dlls/hlink/tests/hlink.c @@ -405,7 +405,7 @@ static void test_persist_save_data(const char *testname, IHlink *lnk, (expected_data_alt == expected_hlink_data3_ie7 && i == 109) /* Win10 */ || (expected_data_alt == expected_hlink_data5_ie7 && i == 107) /* Win10 */) { - ok(data[i] == 0 || broken(data[i] == 1), "Expected 0 or 1, got %d", data[i]); + ok(data[i] == 0 || broken(data[i] == 1), "Expected 0 or 1, got %d\n", data[i]); continue; } if ((expected_data_alt[i] != data[i]) &&