projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4edb771
)
* src/fns.c (maybe_resize_hash_table): Fix EMACS_INT format specifier.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 13 Jan 2024 06:30:50 +0000
(08:30 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 13 Jan 2024 06:30:50 +0000
(08:30 +0200)
src/fns.c
patch
|
blob
|
history
diff --git
a/src/fns.c
b/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: %"p
D
"d", new_size);
+ message ("Growing hash table to: %"p
I
"d", new_size);
#endif
}
}