From 21ff33732fa9ae377010fb4f65e451d331caebcc Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 27 Dec 2005 09:26:12 +0000 Subject: nlist should be unsigned, not signed, as it tracks # of elements in init_fini_list --- ldso/ldso/ldso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldso') diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index fe4c46726..f7def0fd1 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -82,7 +82,7 @@ static unsigned char *_dl_malloc_addr = 0; /* Lets _dl_malloc use the already al static unsigned char *_dl_mmap_zero = 0; /* Also used by _dl_malloc */ static struct elf_resolve **init_fini_list; -static int nlist; /* # items in init_fini_list */ +static unsigned int nlist; /* # items in init_fini_list */ extern void _start(void); #ifdef __UCLIBC_HAS_SSP__ -- cgit v1.2.3