about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2014-04-04 15:03:47 -0400
committerChris Metcalf <cmetcalf@tilera.com>2014-04-04 15:03:47 -0400
commitd42f3448a7af9c55f2193450964772c7c2a0d29b (patch)
tree5d66cded12e2480b429805aea7348140f6baaa6b
parent1c21d115e3e47cd66007341de4bae5c4b0a2d547 (diff)
downloadglibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.gz
glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.xz
glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.zip
tile: Fix cut-and-paste bug in commit fcccd5128.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/tile/dl-runtime.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index da8ea6d06f..a0bb465fa2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
+
+	* sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
+	in function argument name.
+
 2014-04-03  David Svoboda  <svoboda@cert.org>
 
 	[BZ #5666]
diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c
index 8bc2911850..bcc00bc74b 100644
--- a/sysdeps/tile/dl-runtime.c
+++ b/sysdeps/tile/dl-runtime.c
@@ -152,8 +152,8 @@ sim_dlclose (ElfW(Addr) map_start)
 }
 
 void internal_function
-_dl_unmap (struct link_map *l)
+_dl_unmap (struct link_map *map)
 {
-  sim_dlclose (l->l_map_start);
+  sim_dlclose (map->l_map_start);
   _dl_unmap_segments (map);
 }