diff --git a/ChangeLog b/ChangeLog index e914f7e64a..9171f4c364 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-03-06 Ulrich Drepper + * elf/dl-close.c (_dl_close): Unify debug message format. + * elf/dl-close.c (_dl_close): Print debug message just before destroying a link map. diff --git a/elf/dl-close.c b/elf/dl-close.c index 0176e8449e..eaf29ea99f 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -140,7 +140,7 @@ _dl_close (void *_map) { /* There are still references to this object. Do nothing more. */ if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0)) - _dl_debug_printf ("\nclosing file=%s; opencount == %u\n", + _dl_debug_printf ("\nclosing file=%s; opencount=%u\n", map->l_name, map->l_opencount); /* Decrement the object's reference counter, not the dependencies'. */