mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 20:03:43 +01:00
(unwi_find_dynamic_proc_info): Fix cast so we actually get the
desired type. (Logical change 1.155)
This commit is contained in:
parent
40fcb9b7e5
commit
ac0c1db22b
1 changed files with 2 additions and 1 deletions
|
@ -82,7 +82,8 @@ unwi_find_dynamic_proc_info (unw_addr_space_t as, unw_word_t ip,
|
|||
void *arg)
|
||||
{
|
||||
if (as == unw_local_addr_space)
|
||||
return local_find_proc_info ((unw_dyn_info_t *) _U_dyn_info_list_addr (),
|
||||
return local_find_proc_info ((unw_dyn_info_list_t *)
|
||||
_U_dyn_info_list_addr (),
|
||||
as, ip, pi, need_unwind_info, arg);
|
||||
else
|
||||
return remote_find_proc_info (as, ip, pi, need_unwind_info, arg);
|
||||
|
|
Loading…
Reference in a new issue