Fix icc warnings: using wrong enum type
This commit is contained in:
parent
f0459142d5
commit
52ca0dd712
|
@ -1539,7 +1539,7 @@ enum XML_Status XMLCALL
|
||||||
XML_ParseBuffer(XML_Parser parser, int len, int isFinal)
|
XML_ParseBuffer(XML_Parser parser, int len, int isFinal)
|
||||||
{
|
{
|
||||||
const char *start;
|
const char *start;
|
||||||
enum XML_Error result = XML_STATUS_OK;
|
enum XML_Status result = XML_STATUS_OK;
|
||||||
|
|
||||||
switch (parsing) {
|
switch (parsing) {
|
||||||
case XML_SUSPENDED:
|
case XML_SUSPENDED:
|
||||||
|
@ -1698,7 +1698,7 @@ XML_StopParser(XML_Parser parser, XML_Bool resumable)
|
||||||
enum XML_Status XMLCALL
|
enum XML_Status XMLCALL
|
||||||
XML_ResumeParser(XML_Parser parser)
|
XML_ResumeParser(XML_Parser parser)
|
||||||
{
|
{
|
||||||
enum XML_Error result = XML_STATUS_OK;
|
enum XML_Status result = XML_STATUS_OK;
|
||||||
|
|
||||||
if (parsing != XML_SUSPENDED) {
|
if (parsing != XML_SUSPENDED) {
|
||||||
errorCode = XML_ERROR_NOT_SUSPENDED;
|
errorCode = XML_ERROR_NOT_SUSPENDED;
|
||||||
|
|
Loading…
Reference in New Issue