Module: wine Branch: master Commit: 9d57c5f56c1c40ae0293ec05db5cb5cd9d0b16be URL: https://source.winehq.org/git/wine.git/?a=commit;h=9d57c5f56c1c40ae0293ec05d...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Aug 13 14:32:16 2020 +0300
shell32: Silence Destination List QueryInterface() failure message.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shell32/shellitem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/shell32/shellitem.c b/dlls/shell32/shellitem.c index b9e4903a97..9d565ab074 100644 --- a/dlls/shell32/shellitem.c +++ b/dlls/shell32/shellitem.c @@ -1446,7 +1446,7 @@ static HRESULT WINAPI CustomDestinationList_QueryInterface(ICustomDestinationLis *obj = &This->ICustomDestinationList_iface; } else { - FIXME("not implemented for %s\n", shdebugstr_guid(riid)); + WARN("Unsupported interface %s.\n", shdebugstr_guid(riid)); *obj = NULL; return E_NOINTERFACE; }