diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:26:12 +0000 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:26:12 +0000 | 
| commit | 21ff33732fa9ae377010fb4f65e451d331caebcc (patch) | |
| tree | af9dbb0610fdcc8d670a4ed6cbe815d1772c7b7e | |
| parent | cdd6d192cbccb60ee4b50949a4a4c359e6438844 (diff) | |
nlist should be unsigned, not signed, as it tracks # of elements in init_fini_list
| -rw-r--r-- | ldso/ldso/ldso.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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__ | 
