mshtml: Fix a typo in WARN() message

Andrey Gusev andrey.goosev at gmail.com
Thu Jun 2 15:53:05 CDT 2016


-------------- next part --------------
From 5283d869248fe7e71b9f85c61e26f3e09582338c Mon Sep 17 00:00:00 2001
Message-Id: <5283d869248fe7e71b9f85c61e26f3e09582338c.1464900749.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Thu, 2 Jun 2016 23:52:14 +0300
Subject: [PATCH] mshtml: Fix a typo in WARN() message

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/mshtml/persist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c
index 5806e4d..a4a190c 100644
--- a/dlls/mshtml/persist.c
+++ b/dlls/mshtml/persist.c
@@ -162,7 +162,7 @@ void set_current_mon(HTMLOuterWindow *This, IMoniker *mon, DWORD flags)
         if(SUCCEEDED(hres)) {
             hres = create_uri(url, 0, &uri);
             if(FAILED(hres)) {
-                WARN("CrateUri failed: %08x\n", hres);
+                WARN("CreateUri failed: %08x\n", hres);
                 set_current_uri(This, NULL);
                 This->url = SysAllocString(url);
                 CoTaskMemFree(url);
-- 
2.5.5



More information about the wine-patches mailing list