Module: wine Branch: master Commit: 041a0ff1c048084539a9d936985661c9ae9e7c9a URL: http://source.winehq.org/git/wine.git/?a=commit;h=041a0ff1c048084539a9d93698...
Author: Michael Stefaniuc mstefani@winehq.org Date: Thu Jul 6 15:23:38 2017 +0200
d3dx9/tests: Use string concatenation for a multiline string.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Matteo Bruni mbruni@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 bbebfc3..55f48e9 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);