1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-26 10:03:34 +03:00

fixes a portability problem raised by C370 on Z/OS Daniel

* pattern.c: fixes a portability problem raised by C370 on Z/OS
Daniel
This commit is contained in:
Daniel Veillard 2005-09-03 13:43:20 +00:00
parent 54f9a4f508
commit f5812c3179
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat Sep 3 15:42:29 CEST 2005 Daniel Veillard <daniel@veillard.com>
* pattern.c: fixes a portability problem raised by C370 on Z/OS
Sat Sep 3 15:26:31 CEST 2005 Daniel Veillard <daniel@veillard.com>
* SAX2.c tree.c valid.c: fixing a number of issues raised by xml:id

View File

@ -139,7 +139,7 @@ struct _xmlPattern {
xmlDictPtr dict; /* the optional dictionary */
struct _xmlPattern *next; /* next pattern if | is used */
const xmlChar *pattern; /* the pattern */
xmlPatternFlags flags; /* flags */
int flags; /* flags */
int nbStep;
int maxStep;
xmlStepOpPtr steps; /* ops for computation */