small patch to try to fix a warning with Sun One compiler Daniel

* encoding.c: small patch to try to fix a warning with Sun One compiler
Daniel
This commit is contained in:
Daniel Veillard 2004-02-21 14:57:44 +00:00
parent 3288882e8a
commit b5da42af42
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat Feb 21 16:57:48 CET 2004 Daniel Veillard <daniel@veillard.com>
* encoding.c: small patch to try to fix a warning with Sun One compiler
Sat Feb 21 16:22:35 CET 2004 Daniel Veillard <daniel@veillard.com>
* encoding.c: small patch removing a warning with MS compiler.

View File

@ -2131,7 +2131,7 @@ xmlByteConsumed(xmlParserCtxtPtr ctxt) {
*/
if (in->end - in->cur > 0) {
static unsigned char convbuf[32000];
unsigned const char *cur = in->cur;
unsigned const char *cur = (unsigned const char *)in->cur;
int toconv = in->end - in->cur, written = 32000;
int ret;