Huw Davies (@huw) commented about dlls/winmm/tests/mci.c:
ok(err==ok_saved,"mci open tempfile.wav type MPEGVideo returned %s\n", dbg_mcierr(err));
err = mciSendStringA("play mysound", NULL, 0, NULL); - ok(!err,"mci play retuend %s\n", dbg_mcierr(err)); + ok(!err,"mci play returned %s\n", dbg_mcierr(err));
err = mciSendStringA("play mysound", NULL, 0, NULL); - ok(!err,"mci play retuend %s\n", dbg_mcierr(err)); + ok(!err,"mci play returned %s\n", dbg_mcierr(err));
err = mciSendStringA("close mysound", NULL, 0, NULL); ok(!err,"mci close returned %s\n", dbg_mcierr(err)); + + /* test playing a mp3 file */ + snprintf(buf, 1024, "open %ls type MPEGVideo alias mytest", filename);
```suggestion:-0+0 snprintf(buf, ARRAY_SIZE(buf), "open %ls type MPEGVideo alias mytest", filename); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9704#note_130484