mshtml: Fix a typo in a trace message.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2016-07-11 23:25:24 +03:00 committed by Alexandre Julliard
parent 9cec2e5936
commit 3ea8a700f7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}