Nikolay Sivov : mshtml: Fix a typo in a trace message.
Module: wine Branch: master Commit: 3ea8a700f7d06fa55449d1463e01a6849ae6ebcb URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ea8a700f7d06fa55449d1463e... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Mon Jul 11 23:25:24 2016 +0300 mshtml: Fix a typo in a trace message. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/script.c b/dlls/mshtml/script.c index 255c37f..f6eb7ea 100644 --- a/dlls/mshtml/script.c +++ b/dlls/mshtml/script.c @@ -140,7 +140,7 @@ static BOOL init_script_engine(ScriptHost *script_host) hres = IActiveScript_QueryInterface(script_host->script, &IID_IActiveScriptParse, (void**)&script_host->parse); if(FAILED(hres)) { - WARN("Could not get IActiveScriptHost: %08x\n", hres); + WARN("Could not get IActiveScriptParse: %08x\n", hres); return FALSE; }
participants (1)
-
Alexandre Julliard