From 0cf25474a4e6fde7b750472677d559b7e27f3360 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Fri, 4 Dec 2020 16:39:02 -0700 Subject: utf8.h: Fix syntax error only found on EBCDIC builds --- utf8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utf8.h') diff --git a/utf8.h b/utf8.h index e254b8b053..f52317b69b 100644 --- a/utf8.h +++ b/utf8.h @@ -873,7 +873,7 @@ fit in an IV on the current machine. && UNLIKELY( NATIVE_UTF8_TO_I8(*(s)) > 0xF9 \ || (NATIVE_UTF8_TO_I8(*((s) + 1)) >= 0xA2)) \ && LIKELY((s) + UTF8SKIP(s) <= (e))) \ - ? is_utf8_char_helper(s, s + UTF8SKIP(s), 0) : 0 + ? is_utf8_char_helper(s, s + UTF8SKIP(s), 0) : 0) #else # define UTF8_IS_SUPER(s, e) \ (( ((e) > (s) + 3) \ -- cgit v1.2.1