d2d1: Fix a typo in traced error message parameter.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
306d062f46
commit
aa55206626
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue