Module: wine Branch: master Commit: 89eddb2dedf159b7314840565805340c11d007c2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=89eddb2dedf159b73148405658...
Author: Francois Gouget fgouget@free.fr Date: Fri Sep 8 02:13:52 2017 +0200
mshtml: A spelling fix in a WARN() 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/mutation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/mshtml/mutation.c b/dlls/mshtml/mutation.c index cf69b60..3c2ca08 100644 --- a/dlls/mshtml/mutation.c +++ b/dlls/mshtml/mutation.c @@ -373,7 +373,7 @@ static nsresult run_insert_script(HTMLDocumentNode *doc, nsISupports *script_ifa static void set_document_mode(HTMLDocumentNode *doc, compat_mode_t document_mode, BOOL lock) { if(doc->document_mode_locked) { - WARN("attemting to set document mode %d on locked document %p\n", document_mode, doc); + WARN("attempting to set document mode %d on locked document %p\n", document_mode, doc); return; }