From 7e1e3a4d6d79ed08e770cb8c4b855ef163319ee5 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 7 Aug 2015 11:53:32 +0200 Subject: [PATCH] d3drm: Fix a trailing '\n' in a TRACE(). --- dlls/d3drm/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3drm/device.c b/dlls/d3drm/device.c index 9c0fe4a14c3..aebba9a11c7 100644 --- a/dlls/d3drm/device.c +++ b/dlls/d3drm/device.c @@ -636,7 +636,7 @@ static DWORD WINAPI d3drm_device2_GetShades(IDirect3DRMDevice2 *iface) { struct d3drm_device *device = impl_from_IDirect3DRMDevice2(iface); - TRACE("iface %p.\n.", iface); + TRACE("iface %p.\n", iface); return IDirect3DRMDevice3_GetShades(&device->IDirect3DRMDevice3_iface); } -- 2.11.4.GIT