[PATCH] windowscodecs/tests: Add a trailing '\n' to an ok() call.

Francois Gouget fgouget at free.fr
Wed Mar 13 20:40:42 CDT 2019


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/windowscodecs/tests/stream.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/windowscodecs/tests/stream.c b/dlls/windowscodecs/tests/stream.c
index 3750c32f3c2..048f1326be0 100644
--- a/dlls/windowscodecs/tests/stream.c
+++ b/dlls/windowscodecs/tests/stream.c
@@ -765,7 +765,7 @@ static void test_StreamOnIStream(void)
     ok(hr == S_OK, "Failed to create a stream, hr %#x.\n", hr);
 
     hr = IWICStream_InitializeFromMemory(stream, memory, sizeof(memory));
-    ok(hr == S_OK, "Failed to initialize stream, hr %#x.", hr);
+    ok(hr == S_OK, "Failed to initialize stream, hr %#x.\n", hr);
 
     hr = IWICImagingFactory_CreateStream(factory, &substream);
     ok(hr == S_OK, "Failed to create a stream, hr %#x.\n", hr);
-- 
2.20.1




More information about the wine-devel mailing list