1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-06 01:23:41 +01:00

Parameters for find_proc_fde function are fixed

This commit is contained in:
esil 2010-07-29 15:17:47 -07:00
parent 15319ec864
commit a6f1065c24

View file

@ -753,7 +753,9 @@ find_proc_fde (unw_word_t ip, unw_word_t *fde_addr,
#else // HAVE_DL_ITERATE_PHDR
static int
find_proc_fde(unw_word_t ip, unw_word_t *fde_addr, boid *arg) {
find_proc_fde(unw_word_t ip, unw_word_t *fde_addr,
unw_word_t *gp, unw_word_t *fde_base,
unw_word_t *ip_offset, void *arg) {
return -1;
}