Francois Gouget : Add trailing '\n's to ok() calls.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jan 3 06:37:40 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 6526c3772dc8458089a34b4f441704bf84e380f2
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=6526c3772dc8458089a34b4f441704bf84e380f2

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Jan  3 12:10:37 2006 +0100

Add trailing '\n's to ok() calls.
Remove spaces before '\n' in traces.

---

 dlls/shell32/tests/shlfileop.c |    2 +-
 dlls/wined3d/stateblock.c      |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c
index fe753b7..16a78a3 100644
--- a/dlls/shell32/tests/shlfileop.c
+++ b/dlls/shell32/tests/shlfileop.c
@@ -502,7 +502,7 @@ static void test_copy(void)
     shfo.pTo = "testdir2\0";
     retval = SHFileOperation(&shfo);
     ok(retval == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %ld\n", retval);
-    ok(file_exists("testdir2\\test1.txt"), "Expected testdir2\\test1 to exist");
+    ok(file_exists("testdir2\\test1.txt"), "Expected testdir2\\test1 to exist\n");
 
     /* try to copy files to a file */
     clean_after_shfo_tests();
diff --git a/dlls/wined3d/stateblock.c b/dlls/wined3d/stateblock.c
index be4ca95..c1e3e94 100644
--- a/dlls/wined3d/stateblock.c
+++ b/dlls/wined3d/stateblock.c
@@ -88,7 +88,7 @@ ULONG WINAPI IWineD3DStateBlockImpl_Rele
                 if (This->textures[counter]) {
                     /* release our 'internal' hold on the texture */
                     if(0 != IWineD3DBaseTexture_Release(This->textures[counter])) {
-                        TRACE("Texture still referenced by stateblock, applications has leaked Stage = %u Texture = %p \n", counter, This->textures[counter]);
+                        TRACE("Texture still referenced by stateblock, applications has leaked Stage = %u Texture = %p\n", counter, This->textures[counter]);
                     }
                 }
             }




More information about the wine-cvs mailing list