summaryrefslogtreecommitdiff
path: root/src/houdini_html_u.c
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-08-06 09:07:23 -0700
committerKevin Wojniak <kainjow@kainjow.com>2015-08-06 09:07:23 -0700
commit2f393322635cbc1eea0fd75ac17c00d01fe42176 (patch)
tree175729d6e58e3da3d2fdcd99c69d7dbd209e7a0d /src/houdini_html_u.c
parentd9f5a3fe2555ecf9d64e392d8febf551c60ddbe5 (diff)
Prefix utf8proc functions to avoid conflict with existing library
Diffstat (limited to 'src/houdini_html_u.c')
-rwxr-xr-x[-rw-r--r--]src/houdini_html_u.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/houdini_html_u.c b/src/houdini_html_u.c
index 7bb1f50..a2d927b 100644..100755
--- a/src/houdini_html_u.c
+++ b/src/houdini_html_u.c
@@ -75,7 +75,7 @@ bufsize_t houdini_unescape_ent(cmark_strbuf *ob, const uint8_t *src,
codepoint >= 0x110000) {
codepoint = 0xFFFD;
}
- utf8proc_encode_char(codepoint, ob);
+ cmark_utf8proc_encode_char(codepoint, ob);
return i + 1;
}
}