mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[aots] Fix compile error
Also requires https://github.com/adobe-type-tools/aots/pull/5 to be merged. Or if that repo is inactive, we can switch to my fork.
This commit is contained in:
parent
2b5f244639
commit
851d3e33b5
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ runTest(const char *testName,
|
|||
|
||||
features = (hb_feature_t *) malloc (sizeof (*features) * nbSelect);
|
||||
for (int i = 0; i < nbSelect; i++) {
|
||||
if (select[i] != -1) {
|
||||
if (select[i] != (unsigned) -1) {
|
||||
features[nbFeatures].tag = HB_TAG('t', 'e', 's', 't');
|
||||
features[nbFeatures].value = select[i];
|
||||
features[nbFeatures].start = i;
|
||||
|
|
Loading…
Add table
Reference in a new issue