Module: wine Branch: master Commit: da0b1336550978a9ba5e0999ed5723e75380acd1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=da0b1336550978a9ba5e0999e...
Author: Michael Stefaniuc mstefani@winehq.org Date: Wed Nov 18 00:06:39 2020 +0100
winmm/tests: Use a string literal instead of a char array.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Andrew Eikum aeikum@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winmm/tests/mcicda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winmm/tests/mcicda.c b/dlls/winmm/tests/mcicda.c index f6e126d29d1..73668c21031 100644 --- a/dlls/winmm/tests/mcicda.c +++ b/dlls/winmm/tests/mcicda.c @@ -553,7 +553,7 @@ static void test_openclose(HWND hwnd) MCIDEVICEID wDeviceID; MCI_PARMS_UNION parm; MCIERROR err; - char drive[] = {'a',':','\','X','\0'}; + char drive[] = "a:\X"; if (ok_open == MCIERR_CANNOT_LOAD_DRIVER) { /* todo_wine Every open below should yield this same error. */ skip("CD-ROM device likely not installed or disabled.\n");