wined3d: Fix a trailing new-line in an ERR() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-03-24 03:41:57 +01:00 committed by Alexandre Julliard
parent ddb1c93742
commit 2620a78fb0
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ static void create_default_samplers(struct wined3d_device *device, struct wined3
desc.mip_filter = WINED3D_TEXF_LINEAR;
if (FAILED(hr = wined3d_sampler_create(device, &desc, NULL, &device->null_sampler)))
{
ERR("Failed to create null sampler, hr %#x.n", hr);
ERR("Failed to create null sampler, hr %#x.\n", hr);
device->null_sampler = NULL;
}
}