From: Philipp Stephani Date: Sat, 15 Jun 2019 17:02:25 +0000 (+0200) Subject: * src/xfaces.c (dump_realized_face): Fix incorrect format string. X-Git-Tag: emacs-27.0.90~2492 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7e53f4f2da0ec6dd2284db39c00657dec2566886;p=emacs.git * src/xfaces.c (dump_realized_face): Fix incorrect format string. --- 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); }