Commit 07e7f40d authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

xmllite: Constify pointers in arrays that hold const data.

parent 1be348ea
......@@ -102,7 +102,7 @@ static const WCHAR piW[] = {'<','?',0};
static const char *debugstr_nodetype(XmlNodeType nodetype)
{
static const char* type_names[] =
static const char * const type_names[] =
{
"None",
"Element",
......@@ -132,7 +132,7 @@ static const char *debugstr_nodetype(XmlNodeType nodetype)
static const char *debugstr_prop(XmlReaderProperty prop)
{
static const char* prop_names[] =
static const char * const prop_names[] =
{
"MultiLanguage",
"ConformanceLevel",
......
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