From a8e2af0d923e7b6f7b19e8fa516bcd0670dfae84 Mon Sep 17 00:00:00 2001 From: Bakkeby Date: Mon, 9 Jan 2023 10:08:19 +0100 Subject: [PATCH] ligatures: adding 0 initialiser for features array ref. #93 --- hb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hb.c b/hb.c index dbd65c7..db845e7 100644 --- a/hb.c +++ b/hb.c @@ -27,7 +27,7 @@ static HbFontMatch *hbfontcache = NULL; * e. g. * FEATURE('c', 'a', 'l', 't'), FEATURE('d', 'l', 'i', 'g') */ -hb_feature_t features[] = { }; +hb_feature_t features[] = { 0 }; void hbunloadfonts()