hlink/tests: Use wine_dbgstr_guid() to print a REFIID.

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2016-07-20 10:30:06 +02:00 committed by Alexandre Julliard
parent f0b76aec0c
commit fdb1f48a22
1 changed files with 1 additions and 1 deletions

View File

@ -1731,7 +1731,7 @@ static const WCHAR ref_monikerW[] = {'R','E','F','_','M','O','N','I','K','E','R'
static HRESULT WINAPI hls_test_Moniker_BindToStorage(IMoniker *iface, static HRESULT WINAPI hls_test_Moniker_BindToStorage(IMoniker *iface,
IBindCtx *pbc, IMoniker *toLeft, REFIID riid, void **obj) 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; return E_NOTIMPL;
} }