xmllite: Constify pointers in arrays that hold const data.

This commit is contained in:
Dmitry Timoshkov 2013-12-30 18:17:08 +09:00 committed by Alexandre Julliard
parent 1be348ea51
commit 07e7f40dc9
1 changed files with 2 additions and 2 deletions

View File

@ -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",