From ec16b69e7f0b9437e998688cb2877cc425edb70b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 13 Jan 2024 08:30:50 +0200 Subject: [PATCH] * src/fns.c (maybe_resize_hash_table): Fix EMACS_INT format specifier. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } -- 2.39.2