mshtml: Fix a typo in a TRACE() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Francois Gouget 2016-07-02 12:00:09 +02:00 committed by Alexandre Julliard
parent 3998a7aa54
commit c242e00b8c
1 changed files with 1 additions and 1 deletions

View File

@ -827,7 +827,7 @@ static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
nsAString_GetData(&nsstr, &str);
if(!*str) {
TRACE("Gecko returned emptry string, fallback to loaded URL.\n");
TRACE("Gecko returned empty string, fallback to loaded URL.\n");
nsAString_Finish(&nsstr);
hres = IUri_GetHost(This->window->uri, p);
return FAILED(hres) ? hres : S_OK;