From: Ulrich Drepper Date: Sun, 3 Feb 2002 03:18:23 +0000 (+0000) Subject: (_dl_relocate_object): Use _dl_debug_printf instead of _dl_printf for X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68864c462a58f5c6fcba400013465d766a5024b0;p=thirdparty%2Fglibc.git (_dl_relocate_object): Use _dl_debug_printf instead of _dl_printf for debugging info output. --- diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index 4d4ca149eaa..2328330f457 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -55,8 +55,9 @@ _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[], lazy = 0; if (__builtin_expect (_dl_debug_mask & DL_DEBUG_RELOC, 0)) - _dl_printf ("\nrelocation processing: %s%s\n", - l->l_name[0] ? l->l_name : _dl_argv[0], lazy ? " (lazy)" : ""); + _dl_debug_printf ("\nrelocation processing: %s%s\n", + l->l_name[0] ? l->l_name : _dl_argv[0], + lazy ? " (lazy)" : ""); /* DT_TEXTREL is now in level 2 and might phase out at some time. But we rewrite the DT_FLAGS entry to a DT_TEXTREL entry to make