diff options
Diffstat (limited to 'entities.c')
-rw-r--r-- | entities.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -560,7 +560,7 @@ xmlEncodeEntitiesReentrant(xmlDocPtr doc, const xmlChar *input) { *out++ = xc; } else */ - *out++ = *cur; + *out++ = *cur; } else { /* * We assume we have UTF-8 input. @@ -616,10 +616,7 @@ xmlEncodeEntitiesReentrant(xmlDocPtr doc, const xmlChar *input) { /* * We could do multiple things here. Just save as a char ref */ - if (html) - snprintf(buf, sizeof(buf), "&#%d;", val); - else - snprintf(buf, sizeof(buf), "&#x%X;", val); + snprintf(buf, sizeof(buf), "&#x%X;", val); buf[sizeof(buf) - 1] = 0; ptr = buf; while (*ptr != 0) *out++ = *ptr++; |