Francois Gouget : kernel32/tests: Remove a space before a '\n' in an ok() call.
Module: wine Branch: master Commit: 287a5e25d23b2492c40fffec37fc686b93d506a4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=287a5e25d23b2492c40fffec37... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Aug 1 15:48:52 2011 +0200 kernel32/tests: Remove a space before a '\n' in an ok() call. --- dlls/kernel32/tests/volume.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/tests/volume.c b/dlls/kernel32/tests/volume.c index 813ff0b..aa97521 100644 --- a/dlls/kernel32/tests/volume.c +++ b/dlls/kernel32/tests/volume.c @@ -99,7 +99,7 @@ void test_define_dos_deviceA(void) ret = DefineDosDeviceA(0, drivestr, buf); todo_wine - ok(ret, "Could not make drive %s point to %s! \n", drivestr, buf); + ok(ret, "Could not make drive %s point to %s!\n", drivestr, buf); if (!ret) { skip("can't test removing fake drive\n");
participants (1)
-
Alexandre Julliard