Last apparent boolean fix!

This commit is contained in:
ThePhD 2015-08-14 01:19:08 -04:00
parent 5c99cf93d6
commit 23237b0279
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}