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

Andrew Eikum aeikum at codeweavers.com
Wed Nov 18 10:44:42 CST 2020


Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>

On Wed, Nov 18, 2020 at 12:06:39AM +0100, Michael Stefaniuc wrote:
> Signed-off-by: Michael Stefaniuc <mstefani at 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");
> -- 
> 2.26.2
> 
> 



More information about the wine-devel mailing list