From 210069d9dcd4cfeb13c4a80e7f603a7b239d03ed Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Fri, 26 Feb 2016 08:00:06 +0100 Subject: [PATCH] wined3d: Fix TRACE in wined3d_texture_update_desc function. Signed-off-by: Sebastian Lackner Signed-off-by: Henri Verbeet Signed-off-by: Alexandre Julliard --- dlls/wined3d/texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/texture.c b/dlls/wined3d/texture.c index ea19a2d75b0..4b24c21a689 100644 --- a/dlls/wined3d/texture.c +++ b/dlls/wined3d/texture.c @@ -611,7 +611,7 @@ HRESULT CDECL wined3d_texture_update_desc(struct wined3d_texture *texture, UINT TRACE("texture %p, width %u, height %u, format %s, multisample_type %#x, multisample_quality %u, " "mem %p, pitch %u.\n", - texture, width, height, debug_d3dformat(format_id), multisample_type, multisample_type, mem, pitch); + texture, width, height, debug_d3dformat(format_id), multisample_type, multisample_quality, mem, pitch); if (!resource_size) return WINED3DERR_INVALIDCALL; -- 2.11.4.GIT