1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-25 10:50:08 +03:00

trying to fix #112673 Daniel

* xmlschemastypes.c: trying to fix #112673
Daniel
This commit is contained in:
Daniel Veillard 2003-05-09 23:09:55 +00:00
parent c3ca5ba405
commit a77cf71f45
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri May 9 19:08:20 EDT 2003 Daniel Veillard <daniel@veillard.com>
* xmlschemastypes.c: trying to fix #112673
Fri May 9 18:14:16 EDT 2003 Daniel Veillard <daniel@veillard.com>
* DOCBparser.c catalog.c parser.c relaxng.c: removed multiple

View File

@ -100,7 +100,7 @@ struct _xmlSchemaValDate {
unsigned int hour :5; /* 0 <= hour <= 23 */
unsigned int min :6; /* 0 <= min <= 59 */
double sec;
int tz_flag :1; /* is tzo explicitely set? */
unsigned int tz_flag :1; /* is tzo explicitely set? */
int tzo :11; /* -1440 <= tzo <= 1440 */
};