Commit 272d7ab4 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

dbghelp: ImageName is usually blank, so print LoadedImageName in elf_load_debug_info_map.

parent d342d141
......@@ -917,7 +917,7 @@ static BOOL elf_load_debug_info_from_map(struct module* module,
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment