]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xfaces.c (dump_realized_face): Fix incorrect format string.
authorPhilipp Stephani <phst@google.com>
Sat, 15 Jun 2019 17:02:25 +0000 (19:02 +0200)
committerPhilipp Stephani <phst@google.com>
Sat, 15 Jun 2019 17:02:25 +0000 (19:02 +0200)
src/xfaces.c

index fb174ab4fac36c0b26f77c405c63a0d77ba1eaaa..012cc96470d427e3288b18e0d0b4aa3da12bd3eb 100644 (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);
 }