1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-18 07:41:44 +02:00

(unw_dyn_region_info_t): Make insn_count signed.

(Logical change 1.54)
This commit is contained in:
mostang.com!davidm 2003-02-22 08:19:43 +00:00
parent 2f852c2e12
commit e61440508f

View file

@ -91,7 +91,7 @@ unw_dyn_op_t;
typedef struct unw_dyn_region_info
{
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 */
unw_dyn_op_t op[1]; /* variable-length op-array */
}