From 6a0994bc976534e56aa4990584f363536bc35271 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Fri, 2 Oct 2020 13:47:29 +0200 Subject: [PATCH] * src/pdumper.c (dump_do_dump_relocation): Better error for incoherent eln. --- src/pdumper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pdumper.c b/src/pdumper.c index 03391c49505..0528219139c 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -5250,7 +5250,8 @@ dump_do_dump_relocation (const uintptr_t dump_base, dump_ptr (dump_base, reloc_offset); comp_u->lambda_gc_guard_h = CALLN (Fmake_hash_table, QCtest, Qeq); if (!CONSP (comp_u->file)) - error ("Trying to load incoherent dumped .eln"); + error ("Trying to load incoherent dumped eln file %s", + SSDATA (comp_u->file)); /* Check just once if this is a local build or Emacs was installed. */ if (installation_state == UNKNOWN) -- 2.39.5