tile: Fix cut-and-paste bug in commit fcccd5128.
authorChris Metcalf <cmetcalf@tilera.com>
Fri, 4 Apr 2014 19:03:47 +0000 (15:03 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Fri, 4 Apr 2014 19:03:47 +0000 (15:03 -0400)
ChangeLog
sysdeps/tile/dl-runtime.c

index da8ea6d..a0bb465 100644 (file)
--- 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]
index 8bc2911..bcc00bc 100644 (file)
@@ -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);
 }