[PATCH] mshtml: Fix error message in HTMLBodyElement_get_bgColor

Alex Henrie alexhenrie24 at gmail.com
Thu Jun 4 23:50:24 CDT 2020


Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
Mentioned in
https://bugs.winehq.org/show_bug.cgi?id=49062#c0
---
 dlls/mshtml/htmlbody.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mshtml/htmlbody.c b/dlls/mshtml/htmlbody.c
index 981d93f9b4..8c5a7820d0 100644
--- a/dlls/mshtml/htmlbody.c
+++ b/dlls/mshtml/htmlbody.c
@@ -422,7 +422,7 @@ static HRESULT WINAPI HTMLBodyElement_get_bgColor(IHTMLBodyElement *iface, VARIA
         V_VT(p) = VT_BSTR;
         hres = nscolor_to_str(color, &V_BSTR(p));
     }else {
-        ERR("SetBgColor failed: %08x\n", nsres);
+        ERR("GetBgColor failed: %08x\n", nsres);
         hres = E_FAIL;
     }
 
-- 
2.27.0




More information about the wine-devel mailing list