1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

virtdisk/tests: Use wide-char string literals.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-10-03 20:28:27 +02:00 committed by Alexandre Julliard
parent 7fa86c9b92
commit 153dcacfc8

View File

@ -55,7 +55,7 @@ static void test_OpenVirtualDisk(void)
HANDLE handle;
VIRTUAL_STORAGE_TYPE stgtype;
OPEN_VIRTUAL_DISK_PARAMETERS param;
static const WCHAR vdisk[] = {'t','e','s','t','.','v','h','d',0};
static const WCHAR vdisk[] = L"test.vhd";
ret = pOpenVirtualDisk(NULL, NULL, VIRTUAL_DISK_ACCESS_NONE, OPEN_VIRTUAL_DISK_FLAG_NO_PARENTS, NULL, &handle);
ok(ret == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", ret);