[PATCH] shell32: Silence Destination List QueryInterface() failure message.

Nikolay Sivov nsivov at codeweavers.com
Thu Aug 13 06:32:16 CDT 2020


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 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 b9e4903a97e..9d565ab0745 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;
     }
-- 
2.28.0




More information about the wine-devel mailing list