From e0d2ff25b08839159e8c8c72e181b325a6cc583c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 19 Apr 2019 17:35:39 -0700 Subject: [PATCH] Fix another hash false alarm * src/pdumper.c (dump_vectorlike): Fix hash. --- src/pdumper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pdumper.c b/src/pdumper.c index cb36f7e4b4a..5bc5bb47f4c 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -2951,7 +2951,7 @@ dump_vectorlike (struct dump_context *ctx, Lisp_Object lv, dump_off offset) { -#if CHECK_STRUCTS && !defined (HASH_pvec_type_549C833A54) +#if CHECK_STRUCTS && !defined HASH_pvec_type_E55BD36F8E # error "pvec_type changed. See CHECK_STRUCTS comment." #endif const struct Lisp_Vector *v = XVECTOR (lv); -- 2.39.5