Add trailing '\n's to ok() calls

Francois Gouget fgouget at free.fr
Sun Feb 12 13:17:52 CST 2006


Changelog:

  * dlls/mshtml/tests/htmldoc.c

    Francois Gouget <fgouget at free.fr>
    Add trailing '\n's to ok() calls.

-- 
Francois Gouget <fgouget at free.fr>              http://fgouget.free.fr/
                      Linux: the choice of a GNU generation
-------------- next part --------------
Index: dlls/mshtml/tests/htmldoc.c
===================================================================
RCS file: /home/wine/wine/dlls/mshtml/tests/htmldoc.c,v
retrieving revision 1.17
diff -u -p -r1.17 htmldoc.c
--- dlls/mshtml/tests/htmldoc.c	10 Feb 2006 14:58:43 -0000	1.17
+++ dlls/mshtml/tests/htmldoc.c	12 Feb 2006 05:45:40 -0000
@@ -176,7 +176,7 @@ static HRESULT WINAPI HlinkFrame_Navigat
 
         hres = IHlink_GetHlinkSite(pihlNavigate, &site, &site_data);
         ok(hres == S_OK, "GetHlinkSite failed: %08lx\n", hres);
-        ok(site == NULL, "site = %p\n, expected NULL", site);
+        ok(site == NULL, "site = %p\n, expected NULL\n", site);
         ok(site_data == 0xdeadbeef, "site_data = %lx\n", site_data);
     }
 


More information about the wine-patches mailing list