From 44a892a233e0441a0bac84a680aebf2362f2c227 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 22 Nov 2022 12:48:52 -0700 Subject: [PATCH] [shape] Use hb_memcmp instead of memcmp --- src/hb-ot-shape.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-shape.hh b/src/hb-ot-shape.hh index cd6f15cbe..ace28602f 100644 --- a/src/hb-ot-shape.hh +++ b/src/hb-ot-shape.hh @@ -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)); } };