1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-03 09:42:38 +02:00

Fix --enable-debug-frame build

dwarf/Gfind_unwind_table.c: In function '_Ux86_dwarf_find_unwind_table':
dwarf/Gfind_unwind_table.c:223:46: error: 'struct elf_dyn_info' has no member named 'edi'
This commit is contained in:
Tommi Rantala 2012-07-31 15:06:14 +03:00
parent 5d36914c9b
commit 0fecf13d10

View file

@ -220,7 +220,7 @@ dwarf_find_unwind_table (struct elf_dyn_info *edi, unw_addr_space_t as,
#ifdef CONFIG_DEBUG_FRAME
/* Try .debug_frame. */
found = dwarf_find_debug_frame (found, &edi->edi.di_debug, ip, segbase, path,
found = dwarf_find_debug_frame (found, &edi->di_debug, ip, segbase, path,
start_ip, end_ip);
#endif