Commit 153dcacf authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

virtdisk/tests: Use wide-char string literals.

parent 7fa86c9b
......@@ -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);
......
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