Commit cb46a245 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d9: Avoid '\n' in middle of TRACE() message.

parent 07392b39
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment