From 048f2e247c3ebe84fb26e52198d05e4c586764df Mon Sep 17 00:00:00 2001
From: Werner Lemberg <wl@gnu.org>
Date: Mon, 5 Sep 2022 10:43:59 +0200
Subject: [PATCH] [autofit] Minor fix.

* src/autofit/afglobal.c (af_face_globals_compute_style_coverage): Avoid
compiler warning.
---
 src/autofit/afglobal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/autofit/afglobal.c b/src/autofit/afglobal.c
index bf2f19dee..c395f64b6 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 ) )