d3dx9/tests: Use string concatenation for a multiline string.

Michael Stefaniuc mstefani at winehq.org
Thu Jul 6 08:23:38 CDT 2017


Signed-off-by: Michael Stefaniuc <mstefani at 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);
-- 
2.9.4




More information about the wine-patches mailing list