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:
Nikolay Sivov 2016-11-01 03:34:05 +03:00 committed by Alexandre Julliard
parent 306d062f46
commit aa55206626
1 changed files with 1 additions and 1 deletions

View File

@ -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];