ligatures: adding 0 initialiser for features array ref. #93

This commit is contained in:
Bakkeby 2023-01-09 10:08:19 +01:00
parent bd370228a4
commit a8e2af0d92
1 changed files with 1 additions and 1 deletions

2
hb.c
View File

@ -27,7 +27,7 @@ static HbFontMatch *hbfontcache = NULL;
* e. g. * e. g.
* FEATURE('c', 'a', 'l', 't'), FEATURE('d', 'l', 'i', 'g') * FEATURE('c', 'a', 'l', 't'), FEATURE('d', 'l', 'i', 'g')
*/ */
hb_feature_t features[] = { }; hb_feature_t features[] = { 0 };
void void
hbunloadfonts() hbunloadfonts()