commit a8e2af0d923e7b6f7b19e8fa516bcd0670dfae84
parent bd370228a4a2432baa5f0ec6a39df27460fc6cf2
Author: Bakkeby <bakkeby@gmail.com>
Date: Mon, 9 Jan 2023 10:08:19 +0100
ligatures: adding 0 initialiser for features array ref. #93
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()