From 43caa9680b0d000014b4b9004389b7b193a51629 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 31 May 2020 19:50:04 +0200 Subject: [PATCH] Unbreak compilation with CHECK_STRUCTS defined. * src/pdumper.c (dump_float): Update hash value after commit 9f7bfb6cb06f1480a0904184cabf187e03628e55. The struct layout is still compatible. --- src/pdumper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdumper.c b/src/pdumper.c index bac6900cd1a..7f6876666be 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -2239,7 +2239,7 @@ dump_bignum (struct dump_context *ctx, Lisp_Object object) static dump_off dump_float (struct dump_context *ctx, const struct Lisp_Float *lfloat) { -#if CHECK_STRUCTS && !defined (HASH_Lisp_Float_50A7B216D9) +#if CHECK_STRUCTS && !defined (HASH_Lisp_Float_7E7D284C02) # error "Lisp_Float changed. See CHECK_STRUCTS comment in config.h." #endif eassert (ctx->header.cold_start);