Francois Gouget : kernel32/tests: Remove a trailing space from an ok() call message.

Alexandre Julliard julliard at winehq.org
Tue Jul 26 10:44:43 CDT 2016


Module: wine
Branch: master
Commit: b54a8dda844a1a43d1dff22eff0ea206be5c630c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b54a8dda844a1a43d1dff22eff0ea206be5c630c

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Jul 26 16:52:13 2016 +0200

kernel32/tests: Remove a trailing space from an ok() call message.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/tests/virtual.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/kernel32/tests/virtual.c b/dlls/kernel32/tests/virtual.c
index 2a13857..40b1bc9 100644
--- a/dlls/kernel32/tests/virtual.c
+++ b/dlls/kernel32/tests/virtual.c
@@ -651,7 +651,7 @@ static void test_MapViewOfFile(void)
     ok( mapping != 0, "OpenFileMapping FILE_MAP_WRITE error %u\n", GetLastError() );
     SetLastError(0xdeadbeef);
     ptr = MapViewOfFile( mapping, FILE_MAP_READ, 0, 0, 0 );
-    ok( !ptr, "MapViewOfFile succeeded\n " );
+    ok( !ptr, "MapViewOfFile succeeded\n" );
     ok( GetLastError() == ERROR_ACCESS_DENIED, "Wrong error %d\n", GetLastError() );
     SetLastError(0xdeadbeef);
     ptr = MapViewOfFile( mapping, FILE_MAP_WRITE, 0, 0, 0 );




More information about the wine-cvs mailing list