diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-03-07 07:57:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-03-07 07:57:43 +0000 |
commit | d8505f90bf57bd6fba73242ab463fcbda02582da (patch) | |
tree | 44a05a99955fa3f18e586436246b325ad07ddb8c /elf | |
parent | ac53c9c64be744177d4005eea1dede0b82397f55 (diff) | |
download | glibc-d8505f90bf57bd6fba73242ab463fcbda02582da.tar.gz glibc-d8505f90bf57bd6fba73242ab463fcbda02582da.tar.xz glibc-d8505f90bf57bd6fba73242ab463fcbda02582da.zip |
* elf/dl-close.c (_dl_close): Unify debug message format.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-close.c | 2 |
1 files changed, 1 insertions, 1 deletions
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'. */ |