Module: wine Branch: master Commit: 0716fd58a8d96782454c9cc49351cc0f453e82bb URL: https://source.winehq.org/git/wine.git/?a=commit;h=0716fd58a8d96782454c9cc49...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Fri Jun 14 18:46:31 2019 +0800
mshtml: Fix a typo.
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mshtml/htmlelemcol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/htmlelemcol.c b/dlls/mshtml/htmlelemcol.c index 15b5844..62c7254 100644 --- a/dlls/mshtml/htmlelemcol.c +++ b/dlls/mshtml/htmlelemcol.c @@ -523,7 +523,7 @@ static HRESULT WINAPI HTMLElementCollection_tags(IHTMLElementCollection *iface, nsAString_Finish(&tag_str); elem_vector_normalize(&buf);
- TRACE("fount %d tags\n", buf.len); + TRACE("found %d tags\n", buf.len);
*pdisp = (IDispatch*)HTMLElementCollection_Create(buf.buf, buf.len, dispex_compat_mode(&This->dispex));