kernel32/tests: Unconstify a character string.

This commit is contained in:
Frédéric Delanoy 2014-01-10 02:37:02 +01:00 committed by Alexandre Julliard
parent ebccff8225
commit 7215eb2497
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static void test_profile_int(void)
static void test_profile_string(void)
{
static const WCHAR emptyW[] = { 0 };
static WCHAR emptyW[] = { 0 }; /* if "const", GetPrivateProfileStringW(emptyW, ...) crashes on win2k */
static const WCHAR keyW[] = { 'k','e','y',0 };
static const WCHAR sW[] = { 's',0 };
static const WCHAR TESTFILE2W[] = {'.','\\','t','e','s','t','w','i','n','e','2','.','i','n','i',0};