Module: wine Branch: master Commit: 1e53cb64833fda970a9fab42c152b64e76045623 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1e53cb64833fda970a9fab42c1...
Author: Francois Gouget fgouget@free.fr Date: Thu Jun 6 10:16:43 2013 +0200
kernel32/tests: Add a trailing '\n' to a skip() call.
---
dlls/kernel32/tests/process.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c index 1fef8ac..b35481e 100644 --- a/dlls/kernel32/tests/process.c +++ b/dlls/kernel32/tests/process.c @@ -2048,7 +2048,7 @@ static void test_DuplicateHandle(void) f = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0); if (!is_console(f)) { - skip("DuplicateHandle on console handle"); + skip("DuplicateHandle on console handle\n"); CloseHandle(f); return; }