dbghelp: ImageName is usually blank, so print LoadedImageName in elf_load_debug_info_map.
diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c
index 79feca5..bbce495 100644
--- a/dlls/dbghelp/elf_module.c
+++ b/dlls/dbghelp/elf_module.c
@@ -917,7 +917,7 @@
if (fmap->with_crc && (fmap->crc != calc_crc32(fmap)))
{
ERR("Bad CRC for module %s (got %08x while expecting %08lx)\n",
- module->module.ImageName, calc_crc32(fmap), fmap->crc);
+ module->module.LoadedImageName, calc_crc32(fmap), fmap->crc);
/* we don't tolerate mis-matched files */
return FALSE;
}