]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/fns.c (maybe_resize_hash_table): Fix EMACS_INT format specifier.
authorEli Zaretskii <eliz@gnu.org>
Sat, 13 Jan 2024 06:30:50 +0000 (08:30 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 13 Jan 2024 06:30:50 +0000 (08:30 +0200)
src/fns.c

index b1d152a15a9510c951555b66024ac2b1856cd4e8..89434e02ca3c9ec19fb90710aaeae6a0423342ea 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -4702,7 +4702,7 @@ maybe_resize_hash_table (struct Lisp_Hash_Table *h)
 
 #ifdef ENABLE_CHECKING
       if (HASH_TABLE_P (Vpurify_flag) && XHASH_TABLE (Vpurify_flag) == h)
-       message ("Growing hash table to: %"pD"d", new_size);
+       message ("Growing hash table to: %"pI"d", new_size);
 #endif
     }
 }