From 8265d3bb30544e58683fc16e23f9908f3d5d0abc Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 27 Jul 2011 17:24:58 -0700 Subject: [PATCH] * bidi.c (bidi_dump_cached_states): Merge ptrdiff_t fix. --- src/bidi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bidi.c b/src/bidi.c index a6af9e36e15..697ebb92856 100644 --- a/src/bidi.c +++ b/src/bidi.c @@ -2319,7 +2319,7 @@ bidi_dump_cached_states (void) fprintf (stderr, "The cache is empty.\n"); return; } - fprintf (stderr, "Total of %"pI"d state%s in cache:\n", + fprintf (stderr, "Total of %"pD"d state%s in cache:\n", bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s"); for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10) -- 2.39.2