about summary refs log tree commit diff
path: root/sysdeps/tile
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 /sysdeps/tile
parent1c21d115e3e47cd66007341de4bae5c4b0a2d547 (diff)
downloadglibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.gz
glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.tar.xz
glibc-d42f3448a7af9c55f2193450964772c7c2a0d29b.zip
tile: Fix cut-and-paste bug in commit fcccd5128.
Diffstat (limited to 'sysdeps/tile')
-rw-r--r--sysdeps/tile/dl-runtime.c4
1 files changed, 2 insertions, 2 deletions
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);
 }