Module: wine Branch: master Commit: 40dcb5954bf9ff6161222ce703c6fc60a22c6b53 URL: https://gitlab.winehq.org/wine/wine/-/commit/40dcb5954bf9ff6161222ce703c6fc6...
Author: Rémi Bernon rbernon@codeweavers.com Date: Thu Aug 24 15:59:50 2023 +0200
dmsynth/tests: Avoid dynamic format string.
---
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 f21e543705a..a948cf08b53 100644 --- a/dlls/dmsynth/tests/dmsynth.c +++ b/dlls/dmsynth/tests/dmsynth.c @@ -57,7 +57,7 @@ static void test_synth_getformat(IDirectMusicSynth *synth, DMUS_PORTPARAMS *para DWORD size; HRESULT hr;
- winetest_push_context(context); + winetest_push_context("%s", context);
size = sizeof(format); hr = IDirectMusicSynth_GetFormat(synth, &format, &size);