Jacek Caban : scrobj: Improve debug traces.
Module: wine Branch: master Commit: aa503dac9c7505ee36b54d526626c71379156a20 URL: https://source.winehq.org/git/wine.git/?a=commit;h=aa503dac9c7505ee36b54d526... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Sep 26 13:57:55 2019 +0200 scrobj: Improve debug traces. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/scrobj/scrobj.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/scrobj/scrobj.c b/dlls/scrobj/scrobj.c index 944bff0de9..8aa1eeb793 100644 --- a/dlls/scrobj/scrobj.c +++ b/dlls/scrobj/scrobj.c @@ -468,7 +468,7 @@ static HRESULT WINAPI ActiveScriptSite_QueryInterface(IActiveScriptSite *iface, } else { - FIXME("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv); + WARN("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppv); *ppv = NULL; return E_NOINTERFACE; } @@ -1325,6 +1325,8 @@ static HRESULT parse_scriptlet_registration(struct scriptlet_factory *factory) { HRESULT hres; + TRACE("\n"); + if (factory->have_registration) { FIXME("duplicated registration element\n");
participants (1)
-
Alexandre Julliard