summaryrefslogtreecommitdiff
path: root/src/houdini_html_u.c
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-12-10 10:29:56 -0800
committerKevin Wojniak <kainjow@kainjow.com>2015-12-10 10:29:56 -0800
commitdf5236d73fd9aa5c890b36fff5d5a2796253bd45 (patch)
tree1a547a15be670468584f4bbe8f2ff088d0d8d7de /src/houdini_html_u.c
parent6873b63029c6bf88a909dd85184d0aef34391cf5 (diff)
Fix warnings about dropping const qualifier
Diffstat (limited to 'src/houdini_html_u.c')
-rwxr-xr-xsrc/houdini_html_u.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/houdini_html_u.c b/src/houdini_html_u.c
index a2d927b..2f92544 100755
--- a/src/houdini_html_u.c
+++ b/src/houdini_html_u.c
@@ -9,12 +9,12 @@
/* Binary tree lookup code for entities added by JGM */
-static unsigned char *S_lookup(int i, int low, int hi, const unsigned char *s,
+static const unsigned char *S_lookup(int i, int low, int hi, const unsigned char *s,
int len) {
int j;
- int cmp = strncmp((char *)s, (char *)cmark_entities[i].entity, len);
+ int cmp = strncmp((const char *)s, (const char *)cmark_entities[i].entity, len);
if (cmp == 0 && cmark_entities[i].entity[len] == 0) {
- return (unsigned char *)cmark_entities[i].bytes;
+ return (const unsigned char *)cmark_entities[i].bytes;
} else if (cmp < 0 && i > low) {
j = i - ((i - low) / 2);
if (j == i)
@@ -30,7 +30,7 @@ static unsigned char *S_lookup(int i, int low, int hi, const unsigned char *s,
}
}
-static unsigned char *S_lookup_entity(const unsigned char *s, int len) {
+static const unsigned char *S_lookup_entity(const unsigned char *s, int len) {
return S_lookup(CMARK_NUM_ENTITIES / 2, 0, CMARK_NUM_ENTITIES - 1, s, len);
}