shell32/tests: Constify some character strings.

This commit is contained in:
Frédéric Delanoy 2013-12-28 14:10:48 +01:00 committed by Alexandre Julliard
parent 844ea00392
commit 7b9058c87a
1 changed files with 2 additions and 2 deletions

View File

@ -1970,8 +1970,8 @@ static void test_SHGetFolderPathAndSubDirA(void)
BOOL delret; BOOL delret;
DWORD dwret; DWORD dwret;
int i; int i;
static char wine[] = "wine"; static const char wine[] = "wine";
static char winetemp[] = "wine\\temp"; static const char winetemp[] = "wine\\temp";
static char appdata[MAX_PATH]; static char appdata[MAX_PATH];
static char testpath[MAX_PATH]; static char testpath[MAX_PATH];
static char toolongpath[MAX_PATH+1]; static char toolongpath[MAX_PATH+1];