summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-12-04 16:39:02 -0700
committerKarl Williamson <khw@cpan.org>2020-12-04 16:41:27 -0700
commit0cf25474a4e6fde7b750472677d559b7e27f3360 (patch)
tree18b91142138cc316162ecf59cc55d62fb2a74200 /utf8.h
parent4609c3668fdfdd68a65445df942ffddb8a30a9fd (diff)
downloadperl-0cf25474a4e6fde7b750472677d559b7e27f3360.tar.gz
utf8.h: Fix syntax error only found on EBCDIC builds
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h2
1 files changed, 1 insertions, 1 deletions
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) \