1
0
Fork 0
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:
mostang.com!davidm 2004-01-20 23:50:00 +00:00
parent 40fcb9b7e5
commit ac0c1db22b

View file

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