This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED PATCH] tile: Fix cut-and-paste bug in commit fcccd5128.


2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>

	* sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
	in function argument name.

diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c
index 8bc2911..bcc00bc 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);
 }
-- 
1.7.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]