mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-10 19:23:41 +01:00
(struct cursor): Declare pi_valid and pi_is_dynamic as unsigned to
avoid compiler warnings. (Logical change 1.130)
This commit is contained in:
parent
7291d0217c
commit
7305d26f26
1 changed files with 2 additions and 2 deletions
|
@ -142,8 +142,8 @@ struct cursor
|
|||
uint16_t last_abi_marker; /* last abi_marker encountered so far */
|
||||
uint8_t eh_valid_mask;
|
||||
|
||||
int pi_valid : 1; /* is proc_info valid? */
|
||||
int pi_is_dynamic : 1; /* proc_info found via dynamic proc info? */
|
||||
unsigned int pi_valid :1; /* is proc_info valid? */
|
||||
unsigned int pi_is_dynamic :1; /* proc_info found via dynamic proc info? */
|
||||
unw_proc_info_t pi; /* info about current procedure */
|
||||
|
||||
/* In case of stack-discontiguities, such as those introduced by
|
||||
|
|
Loading…
Reference in a new issue