Module: wine Branch: master Commit: 15616e65809f99e6916d00cc7c4646077f6f5aeb URL: http://source.winehq.org/git/wine.git/?a=commit;h=15616e65809f99e6916d00cc7c...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Thu Jun 2 23:52:14 2016 +0300
mshtml: Fix a typo in WARN() message.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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);