aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--elf/dl-close.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e914f7e64a..9171f4c364 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2005-03-06 Ulrich Drepper <drepper@redhat.com>
+ * 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'. */