From d67a7987c05843841f2a9837db31f190173529d5 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 15 Jun 2019 18:53:20 +0200 Subject: [PATCH] * src/xfaces.c (dump_realized_face): Fix format specifier. --- src/xfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xfaces.c b/src/xfaces.c index f90e840717c..fb174ab4fac 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6418,7 +6418,7 @@ dump_realized_face (struct face *face) fprintf (stderr, "underline: %d (%s)\n", face->underline_p, SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))); - fprintf (stderr, "hash: %u\n", face->hash); + fprintf (stderr, "hash: " PRIuPTR "\n", face->hash); } -- 2.39.2