mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-23 07:57:38 +01:00
(intern_string): Change type of "i" to unsigned, to avoid compiler-warning.
(Logical change 1.43)
This commit is contained in:
parent
ef0b937c87
commit
3837469eec
1 changed files with 2 additions and 1 deletions
|
@ -31,7 +31,8 @@ static int
|
|||
intern_string (unw_addr_space_t as, unw_accessors_t *a,
|
||||
unw_word_t addr, char *buf, size_t buf_len, void *arg)
|
||||
{
|
||||
int ret, i;
|
||||
size_t i;
|
||||
int ret;
|
||||
|
||||
for (i = 0; i < buf_len; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue