Nikolay Sivov : d2d1: Fix a typo in traced error message parameter.

Alexandre Julliard julliard at winehq.org
Tue Nov 1 14:58:49 CDT 2016


Module: wine
Branch: master
Commit: aa552066266df76da23bd22d28743272c05bac8b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=aa552066266df76da23bd22d28743272c05bac8b

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue Nov  1 03:34:05 2016 +0300

d2d1: Fix a typo in traced error message parameter.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d2d1/brush.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d2d1/brush.c b/dlls/d2d1/brush.c
index 4110b48..d51f53f 100644
--- a/dlls/d2d1/brush.c
+++ b/dlls/d2d1/brush.c
@@ -881,7 +881,7 @@ HRESULT d2d_brush_get_ps_cb(struct d2d_brush *brush, struct d2d_brush *opacity_b
     {
         if (opacity_brush->type >= sizeof(brush_sizes) / sizeof(*brush_sizes))
         {
-            ERR("Unhandled opacity brush type %#x.\n", brush->type);
+            ERR("Unhandled opacity brush type %#x.\n", opacity_brush->type);
             return E_NOTIMPL;
         }
         buffer_desc.ByteWidth += brush_sizes[opacity_brush->type];




More information about the wine-cvs mailing list