This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[COMMITTED PATCH] tile: Fix cut-and-paste bug in commit fcccd5128.
- From: Chris Metcalf <cmetcalf at tilera dot com>
- To: libc-alpha at sourceware dot org
- Date: Fri, 4 Apr 2014 15:03:47 -0400
- Subject: [COMMITTED PATCH] tile: Fix cut-and-paste bug in commit fcccd5128.
- Authentication-results: sourceware.org; auth=none
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