aboutsummaryrefslogtreecommitdiff
path: root/elf/rtld.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/rtld.c')
-rw-r--r--elf/rtld.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/elf/rtld.c b/elf/rtld.c
index f9e8b8443b..e2d62b70dc 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2266,11 +2266,11 @@ print_statistics (hp_timing_t *rtld_total_timep)
num_relative_relocations += l->l_info[VERSYMIDX (DT_RELACOUNT)]->d_un.d_val;
}
- _dl_debug_printf (" number of relocations: %lu\n",
- GL(dl_num_relocations));
- _dl_debug_printf (" number of relocations from cache: %lu\n",
- GL(dl_num_cache_relocations));
- _dl_debug_printf (" number of relative relocations: %lu\n",
+ _dl_debug_printf (" number of relocations: %lu\n"
+ " number of relocations from cache: %lu\n"
+ " number of relative relocations: %lu\n",
+ GL(dl_num_relocations),
+ GL(dl_num_cache_relocations),
num_relative_relocations);
#ifndef HP_TIMING_NONAVAIL