diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-08-16 12:35:28 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-08-16 12:35:28 -0400 |
commit | f0f47fa064bec45d40f586def9c0d1a505762b09 (patch) | |
tree | 3a1963af9e5cabb91165bafd51a65abe275db55c | |
parent | 794bf65aac54e8124b3d019158365d042a4fef43 (diff) | |
download | glibc-f0f47fa064bec45d40f586def9c0d1a505762b09.tar.gz glibc-f0f47fa064bec45d40f586def9c0d1a505762b09.tar.xz glibc-f0f47fa064bec45d40f586def9c0d1a505762b09.zip |
Avoid warning from last change
-rw-r--r-- | elf/dl-open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c index 7c67f746f3..980c47e845 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -641,7 +641,7 @@ _dl_show_scope (struct link_map *l) if (l->l_scope != NULL) for (int scope_cnt = 0; l->l_scope[scope_cnt] != NULL; ++scope_cnt) { - _dl_debug_printf (" scope %lu:", scope_cnt); + _dl_debug_printf (" scope %u:", scope_cnt); for (unsigned int cnt = 0; cnt < l->l_scope[scope_cnt]->r_nlist; ++cnt) if (*l->l_scope[scope_cnt]->r_list[cnt]->l_name) |