Commit 9d57c5f5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shell32: Silence Destination List QueryInterface() failure message.

parent 84458b19
...@@ -1446,7 +1446,7 @@ static HRESULT WINAPI CustomDestinationList_QueryInterface(ICustomDestinationLis ...@@ -1446,7 +1446,7 @@ static HRESULT WINAPI CustomDestinationList_QueryInterface(ICustomDestinationLis
*obj = &This->ICustomDestinationList_iface; *obj = &This->ICustomDestinationList_iface;
} }
else { else {
FIXME("not implemented for %s\n", shdebugstr_guid(riid)); WARN("Unsupported interface %s.\n", shdebugstr_guid(riid));
*obj = NULL; *obj = NULL;
return E_NOINTERFACE; return E_NOINTERFACE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment