mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-26 09:07:38 +01:00
(unw_dyn_region_info_t): Make insn_count signed.
(Logical change 1.54)
This commit is contained in:
parent
2f852c2e12
commit
e61440508f
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ unw_dyn_op_t;
|
||||||
typedef struct unw_dyn_region_info
|
typedef struct unw_dyn_region_info
|
||||||
{
|
{
|
||||||
struct unw_dyn_region_info *next; /* linked list of regions */
|
struct unw_dyn_region_info *next; /* linked list of regions */
|
||||||
uint32_t insn_count; /* region length (# of instructions) */
|
int32_t insn_count; /* region length (# of instructions) */
|
||||||
uint32_t op_count; /* length of op-array */
|
uint32_t op_count; /* length of op-array */
|
||||||
unw_dyn_op_t op[1]; /* variable-length op-array */
|
unw_dyn_op_t op[1]; /* variable-length op-array */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue