From 89eddb2dedf159b7314840565805340c11d007c2 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 8 Sep 2017 02:13:52 +0200 Subject: [PATCH] mshtml: A spelling fix in a WARN() message. Signed-off-by: Francois Gouget Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- 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 cf69b60c19a..3c2ca08db65 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; }