From: Carl Worth Date: Tue, 19 Jun 2007 06:48:03 +0000 (-0700) Subject: Use correct %ld instead of %d for long argument X-Git-Url: https://git.cworth.org/git?p=spritext;a=commitdiff_plain;h=097961a1e2211b234ddcf86bc9c55aab061e0ce0 Use correct %ld instead of %d for long argument This quiets the warning message from gcc. --- 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 ("}");