Module: wine Branch: master Commit: 1dbc3d092455aaa0fa4cb6633b15c4393f0f01a7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1dbc3d092455aaa0fa4cb6633b...
Author: Francois Gouget fgouget@free.fr Date: Sat Aug 17 10:28:45 2013 +0200
ntdll/tests: Add a trailing '\n' to an ok() call.
---
dlls/ntdll/tests/file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c index 617a92c..3a1efdd 100644 --- a/dlls/ntdll/tests/file.c +++ b/dlls/ntdll/tests/file.c @@ -1386,7 +1386,7 @@ static void test_file_disposition_information(void) GetTempFileNameA( ".", "dis", 0, buffer ); handle = CreateFileA(buffer, GENERIC_WRITE | DELETE, 0, NULL, CREATE_ALWAYS, FILE_FLAG_DELETE_ON_CLOSE, 0); ok( handle != INVALID_HANDLE_VALUE, "failed to create temp file\n" ); - ok( DuplicateHandle( GetCurrentProcess(), handle, GetCurrentProcess(), &handle2, 0, FALSE, DUPLICATE_SAME_ACCESS ), "DuplicateHandle failed" ); + ok( DuplicateHandle( GetCurrentProcess(), handle, GetCurrentProcess(), &handle2, 0, FALSE, DUPLICATE_SAME_ACCESS ), "DuplicateHandle failed\n" ); CloseHandle( handle ); fdi.DoDeleteFile = FALSE; res = pNtSetInformationFile( handle2, &io, &fdi, sizeof fdi, FileDispositionInformation );