Fix sign-compare error on 32-bit systems

pull/1681/head
Behdad Esfahbod 6 years ago
parent f2d20dd9d3
commit c69f02784a
  1. 2
      src/hb-open-type.hh

@ -182,7 +182,7 @@ struct Offset : Type
void *serialize (hb_serialize_context_t *c, const void *base)
{
void *t = c->start_embed<void> ();
c->check_assign (*this, (char *) t - (char *) base);
c->check_assign (*this, (unsigned) ((char *) t - (char *) base));
return t;
}

Loading…
Cancel
Save