[shape] Use hb_memcmp instead of memcmp

This commit is contained in:
Behdad Esfahbod 2022-11-22 12:48:52 -07:00
parent c53c648127
commit 44a892a233
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ struct hb_ot_shape_plan_key_t
bool equal (const hb_ot_shape_plan_key_t *other)
{
return 0 == memcmp (this, other, sizeof (*this));
return 0 == hb_memcmp (this, other, sizeof (*this));
}
};