diff --git a/src/hb-ot-cff1-table.hh b/src/hb-ot-cff1-table.hh index 51cc84694..f7ec00c34 100644 --- a/src/hb-ot-cff1-table.hh +++ b/src/hb-ot-cff1-table.hh @@ -110,8 +110,8 @@ struct Encoding1 { { if (glyph <= ranges[i].nLeft) { - hb_codepoint_t code = (hb_codepoint_t)ranges[i].first + glyph; - return (likely (code < 0x100)? code: CFF_UNDEF_CODE); + hb_codepoint_t code = (hb_codepoint_t) ranges[i].first + glyph; + return (likely (code < 0x100) ? code: CFF_UNDEF_CODE); } glyph -= (ranges[i].nLeft + 1); }