* src/xfaces.c (dump_realized_face): Fix incorrect format string.

This commit is contained in:
Philipp Stephani 2019-06-15 19:02:25 +02:00
parent d67a7987c0
commit 7e53f4f2da

View file

@ -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);
}