Commit 17276a8e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 213b415f
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment