Module: wine Branch: master Commit: 5912bdeec2ec191a066e7b238e83eb7672f2ffe5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5912bdeec2ec191a066e7b238e...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Fri Sep 21 13:29:02 2012 +1000
scrrun: Silence unknown interfaces.
---
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 a02c957..7664af8 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; }