diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/cache.c | 2 | ||||
-rw-r--r-- | elf/dl-close.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/elf/cache.c b/elf/cache.c index e34ea5ccf5..eda1ce2d8e 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -464,7 +464,7 @@ add_to_cache (const char *path, const char *lib, int flags, { struct cache_entry *new_entry, *ptr, *prev; char *full_path; - int len, i; + size_t len, i; new_entry = (struct cache_entry *) xmalloc (sizeof (struct cache_entry)); diff --git a/elf/dl-close.c b/elf/dl-close.c index 1d4a8c3653..5a61ad0aed 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -371,7 +371,7 @@ _dl_close (void *_map) this search list, going in either direction. When the whole chunk is at the end of the used area then we can reclaim it. */ - if (imap->l_tls_offset == tls_free_end) + if ((size_t) imap->l_tls_offset == tls_free_end) /* Extend the contiguous chunk being reclaimed. */ tls_free_end += imap->l_tls_blocksize; else if (imap->l_tls_offset + imap->l_tls_blocksize |