scrrun: Silence Unknown interfaces

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Fri Sep 21 07:12:49 CDT 2012


Hi,


Changelog:
     scrrun: Silence Unknown interfaces


Best Regards
  Alistair Leslie-Hughes
-------------- next part --------------
>From af99d0e2b8c6fe6217bf83a8676a6bb4ae84b8ba Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date: Fri, 21 Sep 2012 13:29:02 +1000
Subject: [PATCH] Silence Unknown interfaces
To: wine-patches <wine-patches at winehq.org>

---
 dlls/scrrun/dictionary.c |    2 +-
 dlls/scrrun/scrrun.c     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/scrrun/dictionary.c b/dlls/scrrun/dictionary.c
index 0a4cc26..378bc1a 100644
--- a/dlls/scrrun/dictionary.c
+++ b/dlls/scrrun/dictionary.c
@@ -70,7 +70,7 @@ static HRESULT WINAPI dictionary_QueryInterface(IDictionary *iface, REFIID riid,
     }
     else
     {
-        FIXME("interface %s not implemented\n", debugstr_guid(riid));
+        WARN("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
     }
 
diff --git a/dlls/scrrun/scrrun.c b/dlls/scrrun/scrrun.c
index 932d124..cd07027 100644
--- a/dlls/scrrun/scrrun.c
+++ b/dlls/scrrun/scrrun.c
@@ -54,7 +54,7 @@ static HRESULT WINAPI scrruncf_QueryInterface(IClassFactory *iface, REFIID riid,
         return S_OK;
     }
 
-    FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
+    WARN("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
     return E_NOINTERFACE;
 }
 
-- 
1.7.9.5



More information about the wine-patches mailing list