summaryrefslogtreecommitdiff
path: root/HTMLparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'HTMLparser.h')
-rw-r--r--HTMLparser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/HTMLparser.h b/HTMLparser.h
index c79ad09c..b129175a 100644
--- a/HTMLparser.h
+++ b/HTMLparser.h
@@ -49,7 +49,7 @@ struct _htmlElemDesc {
typedef struct _htmlEntityDesc htmlEntityDesc;
typedef htmlEntityDesc *htmlEntityDescPtr;
struct _htmlEntityDesc {
- int value; /* the UNICODE value for the character */
+ unsigned int value; /* the UNICODE value for the character */
const char *name; /* The entity name */
const char *desc; /* the description */
};
@@ -59,7 +59,7 @@ struct _htmlEntityDesc {
*/
htmlElemDescPtr htmlTagLookup (const xmlChar *tag);
htmlEntityDescPtr htmlEntityLookup(const xmlChar *name);
-htmlEntityDescPtr htmlEntityValueLookup(int value);
+htmlEntityDescPtr htmlEntityValueLookup(unsigned int value);
int htmlIsAutoClosed(htmlDocPtr doc,
htmlNodePtr elem);