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

Francois Gouget fgouget at free.fr
Thu Mar 23 21:41:57 CDT 2017


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/wined3d/device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c
index 556d555100..e8b0515cf9 100644
--- a/dlls/wined3d/device.c
+++ b/dlls/wined3d/device.c
@@ -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;
     }
 }
-- 
2.11.0



More information about the wine-patches mailing list