1
0
Fork 0
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:
hp.com!davidm 2003-01-28 03:40:06 +00:00
parent ef0b937c87
commit 3837469eec

View file

@ -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)
{