From 041a0ff1c048084539a9d936985661c9ae9e7c9a Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 6 Jul 2017 15:23:38 +0200 Subject: [PATCH] d3dx9/tests: Use string concatenation for a multiline string. Signed-off-by: Michael Stefaniuc Signed-off-by: Matteo Bruni Signed-off-by: Alexandre Julliard --- dlls/d3dx9_36/tests/effect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3dx9_36/tests/effect.c b/dlls/d3dx9_36/tests/effect.c index bbebfc3422d..55f48e9ca5e 100644 --- a/dlls/d3dx9_36/tests/effect.c +++ b/dlls/d3dx9_36/tests/effect.c @@ -4338,8 +4338,8 @@ static void test_effect_preshader_compare_vconsts_(unsigned int line, IDirect3DD & (1u << (i % TEST_EFFECT_BITMASK_BLOCK_SIZE))) { ok_(__FILE__, line)(!memcmp(&fdata[i], &test_effect_preshader_fvect_v[i], sizeof(fdata[i])), - "Vertex shader float constants do not match, expected (%g, %g, %g, %g), \ -got (%g, %g, %g, %g), parameter %s.\n", + "Vertex shader float constants do not match, expected (%g, %g, %g, %g), " + "got (%g, %g, %g, %g), parameter %s.\n", test_effect_preshader_fvect_v[i].x, test_effect_preshader_fvect_v[i].y, test_effect_preshader_fvect_v[i].z, test_effect_preshader_fvect_v[i].w, fdata[i].x, fdata[i].y, fdata[i].z, fdata[i].w, updated_param);