Module: wine Branch: master Commit: c242e00b8cd31758ce1e550de0baaf346f9e8e99 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c242e00b8cd31758ce1e550de0...
Author: Francois Gouget fgouget@free.fr Date: Sat Jul 2 12:00:09 2016 +0200
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
---
dlls/mshtml/htmldoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index 352b757..c341820 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -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;