aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2019-06-15 19:02:25 +0200
committerPhilipp Stephani2019-06-15 19:02:25 +0200
commit7e53f4f2da0ec6dd2284db39c00657dec2566886 (patch)
treeb2fdd7223911f60f2462c2f7f51a18103b85e88b /src
parentd67a7987c05843841f2a9837db31f190173529d5 (diff)
downloademacs-7e53f4f2da0ec6dd2284db39c00657dec2566886.tar.gz
emacs-7e53f4f2da0ec6dd2284db39c00657dec2566886.zip
* src/xfaces.c (dump_realized_face): Fix incorrect format string.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
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)
6418 fprintf (stderr, "underline: %d (%s)\n", 6418 fprintf (stderr, "underline: %d (%s)\n",
6419 face->underline_p, 6419 face->underline_p,
6420 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX]))); 6420 SDATA (Fsymbol_name (face->lface[LFACE_UNDERLINE_INDEX])));
6421 fprintf (stderr, "hash: " PRIuPTR "\n", face->hash); 6421 fprintf (stderr, "hash: %" PRIuPTR "\n", face->hash);
6422} 6422}
6423 6423
6424 6424