From: Eli Zaretskii Date: Sat, 13 Jan 2024 06:30:50 +0000 (+0200) Subject: * src/fns.c (maybe_resize_hash_table): Fix EMACS_INT format specifier. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec16b69e7f0b9437e998688cb2877cc425edb70b;p=emacs.git * src/fns.c (maybe_resize_hash_table): Fix EMACS_INT format specifier. --- diff --git a/src/fns.c b/src/fns.c index b1d152a15a9..89434e02ca3 100644 --- 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 } }