Commit 7d8f8dba authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

qedit/tests: Constify some character strings.

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