From 23237b0279a04407addf33f599c45faa60f002ca Mon Sep 17 00:00:00 2001 From: ThePhD Date: Fri, 14 Aug 2015 01:19:08 -0400 Subject: [PATCH] Last apparent boolean fix! --- src/hb-ot-shape-complex-use.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-shape-complex-use.cc b/src/hb-ot-shape-complex-use.cc index 1d44d2200..cc2a9d4d8 100644 --- a/src/hb-ot-shape-complex-use.cc +++ b/src/hb-ot-shape-complex-use.cc @@ -572,7 +572,7 @@ compose_use (const hb_ot_shape_normalize_context_t *c, if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (c->unicode->general_category (a))) return false; - return c->unicode->compose (a, b, ab); + return c->unicode->compose (a, b, ab) != 0; }