From 1140f7ddd58388709ce87b4c306a7c875af5406e Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 19 Dec 2015 12:08:16 -0800 Subject: Use fully qualified versions of constants. --- src/houdini_html_u.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) mode change 100755 => 100644 src/houdini_html_u.c (limited to 'src/houdini_html_u.c') diff --git a/src/houdini_html_u.c b/src/houdini_html_u.c old mode 100755 new mode 100644 index 2f92544..6e8d620 --- a/src/houdini_html_u.c +++ b/src/houdini_html_u.c @@ -9,10 +9,11 @@ /* Binary tree lookup code for entities added by JGM */ -static const unsigned char *S_lookup(int i, int low, int hi, const unsigned char *s, - int len) { +static const unsigned char *S_lookup(int i, int low, int hi, + const unsigned char *s, int len) { int j; - int cmp = strncmp((const char *)s, (const 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 (const unsigned char *)cmark_entities[i].bytes; } else if (cmp < 0 && i > low) { -- cgit v1.2.3