Commit 048f2e247c3ebe84fb26e52198d05e4c586764df

Werner Lemberg 2022-09-05T10:43:59

[autofit] Minor fix. * src/autofit/afglobal.c (af_face_globals_compute_style_coverage): Avoid compiler warning.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/autofit/afglobal.c b/src/autofit/afglobal.c
index bf2f19d..c395f64 100644
--- a/src/autofit/afglobal.c
+++ b/src/autofit/afglobal.c
@@ -301,7 +301,7 @@
           if ( !( count % 10 ) )
             FT_TRACE4(( " " ));
 
-          FT_TRACE4(( " %ld", idx ));
+          FT_TRACE4(( " %d", idx ));
           count++;
 
           if ( !( count % 10 ) )