From a2d33779e1f582e06c89549090ba95251c04be13 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 3 Dec 2022 09:49:00 -0700 Subject: [PATCH] Fix arm bot build --- src/hb-ot-cmap-table.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-cmap-table.hh b/src/hb-ot-cmap-table.hh index bca60e6d3..1149b95f5 100644 --- a/src/hb-ot-cmap-table.hh +++ b/src/hb-ot-cmap-table.hh @@ -930,8 +930,8 @@ struct DefaultUVS : SortedArray32Of for (const UnicodeValueRange& _ : as_array ()) { - unsigned curEntry = (unsigned) _.startUnicodeValue - 1; - unsigned end = curEntry + _.additionalCount + 2; + hb_codepoint_t curEntry = (unsigned) _.startUnicodeValue - 1; + hb_codepoint_t end = curEntry + _.additionalCount + 2; for (; unicodes->next (&curEntry) && curEntry < end;) {