]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xfaces.c (dump_realized_face): Fix format specifier.
authorPhilipp Stephani <phst@google.com>
Sat, 15 Jun 2019 16:53:20 +0000 (18:53 +0200)
committerPhilipp Stephani <phst@google.com>
Sat, 15 Jun 2019 16:59:54 +0000 (18:59 +0200)
src/xfaces.c

index f90e840717cf36d04cbdd10b9235864521489e0b..fb174ab4fac36c0b26f77c405c63a0d77ba1eaaa 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: %u\n", face->hash);
+  fprintf (stderr, "hash: " PRIuPTR "\n", face->hash);
 }