From be82a2fc0c7ad3553f2e6dc8082a3255cb6c917c Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Mon, 3 Jun 2019 15:52:23 -0700 Subject: [PATCH] parenthesized cond-exp in CFF2FDSelect::sanitize --- src/hb-ot-cff2-table.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-cff2-table.hh b/src/hb-ot-cff2-table.hh index a7b0ba9..74acc77 100644 --- a/src/hb-ot-cff2-table.hh +++ b/src/hb-ot-cff2-table.hh @@ -56,11 +56,11 @@ struct CFF2FDSelect TRACE_SANITIZE (this); return_trace (likely (c->check_struct (this) && (format == 0 || format == 3 || format == 4) && - (format == 0)? + ((format == 0)? u.format0.sanitize (c, fdcount): ((format == 3)? u.format3.sanitize (c, fdcount): - u.format4.sanitize (c, fdcount)))); + u.format4.sanitize (c, fdcount))))); } bool serialize (hb_serialize_context_t *c, const CFF2FDSelect &src, unsigned int num_glyphs) -- 2.7.4