From b8524003dc410557c0670b7f2a60e861eb819fed Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Wed, 20 Apr 2022 12:52:22 +0300 Subject: [PATCH] Fix build for --enable-checking=structs * src/pdumper.c (dump_subr): Update Lisp_Subr hash after last change of 2022-04-18 "Port struct Lisp_Subr to C99". --- src/pdumper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdumper.c b/src/pdumper.c index 0b74e6431fe..5923d9b1d82 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -2853,7 +2853,7 @@ dump_bool_vector (struct dump_context *ctx, const struct Lisp_Vector *v) static dump_off dump_subr (struct dump_context *ctx, const struct Lisp_Subr *subr) { -#if CHECK_STRUCTS && !defined (HASH_Lisp_Subr_A212A8F82A) +#if CHECK_STRUCTS && !defined (HASH_Lisp_Subr_20B7443AD7) # error "Lisp_Subr changed. See CHECK_STRUCTS comment in config.h." #endif struct Lisp_Subr out; -- 2.39.2