diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-30 14:24:54 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-30 14:24:54 +0000 |
commit | 27289ce88425bfb7cc105280155a34bb57030164 (patch) | |
tree | 6bc88b572d6db82aeffe780c6c0703d41f0b63b5 /ldso | |
parent | c4a9c0cdaef0db6676d2e9d60a0f05beecd05c9b (diff) |
- nlist is unsigned. Adjust iterator variables accordingly to avoid signedness warnings.
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ldso.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index 10af7cb1b..737ecb3b7 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -111,7 +111,7 @@ uintptr_t __guard attribute_relro; static void __attribute__ ((destructor)) __attribute_used__ _dl_fini(void) { - int i; + unsigned int i; struct elf_resolve * tpnt; for (i = 0; i < nlist; ++i) { @@ -643,7 +643,7 @@ void _dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr, /* Sort the INIT/FINI list in dependency order. */ for (tcurr = _dl_loaded_modules->next; tcurr; tcurr = tcurr->next) { - int j, k; + unsigned int j, k; for (j = 0; init_fini_list[j] != tcurr; ++j) /* Empty */; |