Module: wine Branch: master Commit: cb46a245c133fd1dfbb8538da836d22a7166ce48 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cb46a245c133fd1dfbb8538da8...
Author: Józef Kucia jkucia@codeweavers.com Date: Fri Jan 13 12:53:55 2017 +0100
d3d9: Avoid '\n' in middle of TRACE() message.
Signed-off-by: Józef Kucia jkucia@codeweavers.com Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/d3d9/device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index e6ddaf4..e0bc585 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -922,9 +922,9 @@ static HRESULT WINAPI d3d9_device_CreateVolumeTexture(IDirect3DDevice9Ex *iface, struct d3d9_texture *object; HRESULT hr;
- TRACE("iface %p, width %u, height %u, depth %u, levels %u\n", - iface, width, height, depth, levels); - TRACE("usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n", + TRACE("iface %p, width %u, height %u, depth %u, levels %u, " + "usage %#x, format %#x, pool %#x, texture %p, shared_handle %p.\n", + iface, width, height, depth, levels, usage, format, pool, texture, shared_handle);
*texture = NULL;