Module: wine Branch: master Commit: a6d6f914b3f86a3fe6fd70c65e10eab5a084af83 URL: https://gitlab.winehq.org/wine/wine/-/commit/a6d6f914b3f86a3fe6fd70c65e10eab...
Author: Francois Gouget fgouget@free.fr Date: Wed Sep 6 11:24:29 2023 +0200
dmsynth/tests: Add the trailing linefeed to a win_skip() message.
The missing linefeed was causing the test summary line to be garbled.
---
dlls/dmsynth/tests/dmsynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dmsynth/tests/dmsynth.c b/dlls/dmsynth/tests/dmsynth.c index 6d695991cac..dd96c87ef34 100644 --- a/dlls/dmsynth/tests/dmsynth.c +++ b/dlls/dmsynth/tests/dmsynth.c @@ -1168,7 +1168,7 @@ static void test_IDirectMusicSynthSink(void) ok(hr == S_OK || broken(hr == DSERR_NODRIVER), "got %#lx\n", hr); if (broken(hr == DSERR_NODRIVER)) { - win_skip("Failed to create IDirectSound, skipping tests"); + win_skip("Failed to create IDirectSound, skipping tests\n"); return; }