From 300d82ce2ef1f30d8c9cd839801fe3b429c78d45 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 13 Dec 2022 10:48:56 -0700 Subject: [PATCH] Fix compiler warning --- src/hb-ot-layout-common.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-layout-common.hh b/src/hb-ot-layout-common.hh index 27ca08dae..0f424f5aa 100644 --- a/src/hb-ot-layout-common.hh +++ b/src/hb-ot-layout-common.hh @@ -2488,7 +2488,7 @@ struct VarData const HBUINT8 *src_delta_bytes = src->get_delta_bytes (); unsigned src_row_size = src->get_row_size (); unsigned src_word_count = src->wordCount (); - unsigned src_long_words = src->longWords (); + bool src_long_words = src->longWords (); bool has_long = false; if (src_long_words)