Commit da0b1336 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winmm/tests: Use a string literal instead of a char array.

parent 283c1be7
......@@ -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");
......
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