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

This commit is contained in:
Rob Shearman 2007-02-21 17:11:22 +00:00 committed by Alexandre Julliard
parent d342d1413c
commit 272d7ab46a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}