1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

removing a warning with Sun compiler bug #109154 Daniel

* xmlschemastypes.c: removing a warning with Sun compiler
  bug #109154
Daniel
This commit is contained in:
Daniel Veillard 2003-03-25 15:10:27 +00:00
parent da27174001
commit 09628210bd
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Tue Mar 25 16:07:00 CET 2003 Daniel Veillard <daniel@veillard.com>
* xmlschemastypes.c: removing a warning with Sun compiler
bug #109154
Tue Mar 25 07:02:56 MST 2003 John Fleck <jfleck@inkstain.net>
* doc/xmllint.xml

View File

@ -1661,11 +1661,9 @@ xmlSchemaValPredefTypeNode(xmlSchemaTypePtr type, const xmlChar *value,
attr->atype = XML_ATTRIBUTE_ENTITY;
}
return(ret);
} else {
TODO
return(0);
}
return(-1);
TODO
return(0);
}
/**