qedit/tests: Constify some character strings.

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

View File

@ -76,8 +76,8 @@ static WCHAR test_sound_avi_filename[MAX_PATH];
static BOOL unpack_avi_file(int id, WCHAR name[MAX_PATH])
{
static WCHAR temp_path[MAX_PATH];
static WCHAR prefix[] = {'D','E','S',0};
static WCHAR avi[] = {'a','v','i',0};
static const WCHAR prefix[] = {'D','E','S',0};
static const WCHAR avi[] = {'a','v','i',0};
HRSRC res;
HGLOBAL data;
char *mem;