From 7e53f4f2da0ec6dd2284db39c00657dec2566886 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 15 Jun 2019 19:02:25 +0200 Subject: [PATCH] * src/xfaces.c (dump_realized_face): Fix incorrect format string. --- src/xfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xfaces.c b/src/xfaces.c index fb174ab4fac..012cc96470d 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: " PRIuPTR "\n", face->hash); + fprintf (stderr, "hash: %" PRIuPTR "\n", face->hash); } -- 2.39.2