mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-10 08:58:16 +03:00
fixed a = -> == error pointed by GUY Fabrice Daniel
* xmlschemas.c: fixed a = -> == error pointed by GUY Fabrice Daniel
This commit is contained in:
parent
cc5e2330ef
commit
bc69d4f942
@ -1,3 +1,7 @@
|
||||
Thu Mar 17 11:03:59 CET 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlschemas.c: fixed a = -> == error pointed by GUY Fabrice
|
||||
|
||||
Wed Mar 16 22:53:53 CET 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlschemas.c: more debug messages from Matthew Burgess
|
||||
|
@ -13374,7 +13374,7 @@ xmlSchemaCheckSRCCT(xmlSchemaParserCtxtPtr ctxt,
|
||||
OK = 1;
|
||||
|
||||
} else { /* if IS_SIMPLE_TYPE(base) */
|
||||
if (base->contentType = XML_SCHEMA_CONTENT_MIXED) {
|
||||
if (base->contentType == XML_SCHEMA_CONTENT_MIXED) {
|
||||
/*
|
||||
* 2.1.2 only if the <restriction> alternative is also
|
||||
* chosen, a complex type definition whose {content type}
|
||||
@ -13425,7 +13425,7 @@ xmlSchemaCheckSRCCT(xmlSchemaParserCtxtPtr ctxt,
|
||||
return (XML_SCHEMAP_SRC_CT_1);
|
||||
}
|
||||
OK = 1;
|
||||
} else { /* if (base->contentType = XML_SCHEMA_CONTENT_MIXED)*/
|
||||
} else { /* if (base->contentType == XML_SCHEMA_CONTENT_MIXED)*/
|
||||
/*
|
||||
* 2.1.1 a complex type definition whose {content type} is a
|
||||
* simple type definition;
|
||||
|
Loading…
x
Reference in New Issue
Block a user