Commit 4ef6d4a6 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

comcat/tests: Constify some character strings.

parent c2d09079
...@@ -65,15 +65,15 @@ static void do_enum(void) ...@@ -65,15 +65,15 @@ static void do_enum(void)
GUID the_cat[1]; GUID the_cat[1];
GUID wanted_guid; GUID wanted_guid;
ULONG fetched = -1; ULONG fetched = -1;
static WCHAR szCatID[] = { static const WCHAR szCatID[] = {
'{', '{',
'd','e','a','d','c','a','f','e', 'd','e','a','d','c','a','f','e',
'-','0','0','0','0','-','0','0','0','0', '-','0','0','0','0','-','0','0','0','0',
'-','0','0','0','0', '-','0','0','0','0',
'-','0','0','0','0','0','0','0','0','0','0','0','0', '-','0','0','0','0','0','0','0','0','0','0','0','0',
'}',0}; '}',0};
static WCHAR szGuid[] = { static const WCHAR szGuid[] = {
'{', '{',
'd','e','a','d','c','a','f','e','-', 'd','e','a','d','c','a','f','e','-',
'b','e','e','d','-', 'b','e','e','d','-',
......
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