diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-25 06:33:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-25 06:33:07 +0000 |
commit | cf44e2dd737fb0e6e75d68bc82df84de657d0a40 (patch) | |
tree | 69b3043c4fa4c6d2ad06ec4157b10dcc174dd923 /elf/rtld.c | |
parent | c90b5d28387b2fe48e6faba05b0b17d67148be3a (diff) | |
download | glibc-cf44e2dd737fb0e6e75d68bc82df84de657d0a40.tar.gz glibc-cf44e2dd737fb0e6e75d68bc82df84de657d0a40.tar.xz glibc-cf44e2dd737fb0e6e75d68bc82df84de657d0a40.zip |
Update.
2001-08-24 Ulrich Drepper <drepper@redhat.com> * elf/rtld.c (print_statistics): Printf % after percent values. * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%. * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we don't have to compute the hash value and initialize current_value. Move reference_name variable to where it is needed. (_dl_lookup_versioned_symbol): Likewise.
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index c46f2d1a13..f17d71dc7f 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1520,7 +1520,7 @@ print_statistics (void) *wp++ = *cp++; } *wp = '\0'; - _dl_debug_printf (" time needed for relocation: %s (%s)\n", + _dl_debug_printf (" time needed for relocation: %s (%s%%)\n", buf, pbuf); } #endif @@ -1549,7 +1549,7 @@ print_statistics (void) *wp++ = *cp++; } *wp = '\0'; - _dl_debug_printf (" time needed to load objects: %s (%s)\n", + _dl_debug_printf (" time needed to load objects: %s (%s%%)\n", buf, pbuf); } #endif |