From 097961a1e2211b234ddcf86bc9c55aab061e0ce0 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 18 Jun 2007 23:48:03 -0700 Subject: [PATCH] Use correct %ld instead of %d for long argument This quiets the warning message from gcc. --- spritext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spritext.c b/spritext.c index ebfa8ea..0250fa9 100644 --- a/spritext.c +++ b/spritext.c @@ -189,7 +189,7 @@ cgiMain () FT_KERNING_UNSCALED, &kerning ); if ( kerning.x ) - printf(",k%d:%d", characters[j], kerning.x); + printf(",k%d:%ld", characters[j], kerning.x); } printf ("}"); -- 2.43.0