Author: akhaldi
Date: Thu Aug 18 10:07:20 2016
New Revision: 72281

URL: http://svn.reactos.org/svn/reactos?rev=72281&view=rev
Log:
[HLINK_WINETEST] Sync with Wine Staging 1.9.16. CORE-11866

Modified:
    trunk/rostests/winetests/hlink/hlink.c

Modified: trunk/rostests/winetests/hlink/hlink.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/hlink/hlink.c?rev=72281&r1=72280&r2=72281&view=diff
==============================================================================
--- trunk/rostests/winetests/hlink/hlink.c      [iso-8859-1] (original)
+++ trunk/rostests/winetests/hlink/hlink.c      [iso-8859-1] Thu Aug 18 
10:07:20 2016
@@ -637,7 +637,7 @@
     ok(mon != NULL, "mon == NULL\n");
 
     hres = IMoniker_GetDisplayName(mon, bctx, 0, &name);
-    ok(hres == S_OK, "GetDiasplayName failed: %08x\n", hres);
+    ok(hres == S_OK, "GetDisplayName failed: %08x\n", hres);
     ok(!lstrcmpW(name, winehq_urlW), "wrong display name %s\n", 
wine_dbgstr_w(name));
     CoTaskMemFree(name);
 
@@ -664,7 +664,7 @@
     ok(mon != NULL, "mon == NULL\n");
 
     hres = IMoniker_GetDisplayName(mon, bctx, 0, &name);
-    ok(hres == S_OK, "GetDiasplayName failed: %08x\n", hres);
+    ok(hres == S_OK, "GetDisplayName failed: %08x\n", hres);
     ok(!lstrcmpW(name, invalid_urlW), "wrong display name %s\n", 
wine_dbgstr_w(name));
     CoTaskMemFree(name);
 
@@ -680,7 +680,7 @@
     ok(mon != NULL, "mon == NULL\n");
 
     hres = IMoniker_GetDisplayName(mon, bctx, 0, &name);
-    ok(hres == S_OK, "GetDiasplayName failed: %08x\n", hres);
+    ok(hres == S_OK, "GetDisplayName failed: %08x\n", hres);
     ok(!lstrcmpW(name, file_urlW+8), "wrong display name %s\n", 
wine_dbgstr_w(name));
     CoTaskMemFree(name);
 
@@ -1731,7 +1731,7 @@
 static HRESULT WINAPI hls_test_Moniker_BindToStorage(IMoniker *iface,
         IBindCtx *pbc, IMoniker *toLeft, REFIID riid, void **obj)
 {
-    ok(0, "BTS: %p %p %p %p %p\n", iface, pbc, toLeft, riid, obj);
+    ok(0, "BTS: %p %p %p %s %p\n", iface, pbc, toLeft, wine_dbgstr_guid(riid), 
obj);
     return E_NOTIMPL;
 }
 


Reply via email to