=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: d3d8: Avoid '\n' in middle of TRACE() messages.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Mar 25 10:00:39 CDT 2016


Module: wine
Branch: master
Commit: 0aa885e75a38478a727882b079438fe08bd63627
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0aa885e75a38478a727882b079438fe08bd63627

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Fri Mar 25 14:26:23 2016 +0100

d3d8: Avoid '\n' in middle of TRACE() messages.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3d8/device.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/d3d8/device.c b/dlls/d3d8/device.c
index 1cad4be..154d817 100644
--- a/dlls/d3d8/device.c
+++ b/dlls/d3d8/device.c
@@ -942,8 +942,8 @@ static HRESULT d3d8_device_create_surface(struct d3d8_device *device, UINT width
     struct wined3d_texture *texture;
     HRESULT hr;
 
-    TRACE("device %p, width %u, height %u, format %#x, flags %#x, surface %p,\n"
-            "\tusage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
+    TRACE("device %p, width %u, height %u, format %#x, flags %#x, surface %p, "
+            "usage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
             device, width, height, format, flags, surface,
             usage, pool, multisample_type, multisample_quality);
 
@@ -2130,7 +2130,7 @@ static HRESULT WINAPI d3d8_device_DrawIndexedPrimitiveUP(IDirect3DDevice8 *iface
     UINT vtx_size = vertex_count * vertex_stride;
     UINT vb_pos, align;
 
-    TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, primitive_count %u,\n"
+    TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, primitive_count %u, "
             "index_data %p, index_format %#x, vertex_data %p, vertex_stride %u.\n",
             iface, primitive_type, min_vertex_idx, vertex_count, primitive_count,
             index_data, index_format, vertex_data, vertex_stride);




More information about the wine-cvs mailing list