aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2020-11-22 23:22:50 +0100
committerPhilipp Stephani2020-11-22 23:22:50 +0100
commitedd949a3eb8907eed84eab30e170cc138a5b2d41 (patch)
tree3e5590114b8e4c2072383b418722bce85b6916d0
parent9b6ad3107f93d40f82c3c53dc0984c6d70aded83 (diff)
downloademacs-edd949a3eb8907eed84eab30e170cc138a5b2d41.tar.gz
emacs-edd949a3eb8907eed84eab30e170cc138a5b2d41.zip
Unbreak compilation with CHECK_STRUCTS.
Commit 3963aea4f4a22da0c1fb8ca8ca80b59c58373811 modified the ‘buffer’ structure, but didn’t adapt the hash. * src/pdumper.c (dump_buffer): Update buffer hash.
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index b5b4050b93d..0096a4d45a3 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2692,7 +2692,7 @@ dump_hash_table (struct dump_context *ctx,
2692static dump_off 2692static dump_off
2693dump_buffer (struct dump_context *ctx, const struct buffer *in_buffer) 2693dump_buffer (struct dump_context *ctx, const struct buffer *in_buffer)
2694{ 2694{
2695#if CHECK_STRUCTS && !defined HASH_buffer_5DC36DBD42 2695#if CHECK_STRUCTS && !defined HASH_buffer_EE36B4292E
2696# error "buffer changed. See CHECK_STRUCTS comment in config.h." 2696# error "buffer changed. See CHECK_STRUCTS comment in config.h."
2697#endif 2697#endif
2698 struct buffer munged_buffer = *in_buffer; 2698 struct buffer munged_buffer = *in_buffer;