From: Chris Metcalf Date: Fri, 4 Apr 2014 19:03:47 +0000 (-0400) Subject: tile: Fix cut-and-paste bug in commit fcccd5128. X-Git-Tag: upstream/2.30~7651 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d42f3448a7af9c55f2193450964772c7c2a0d29b;p=external%2Fglibc.git tile: Fix cut-and-paste bug in commit fcccd5128. --- diff --git a/ChangeLog b/ChangeLog index da8ea6d..a0bb465 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-04-04 Chris Metcalf + + * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug + in function argument name. + 2014-04-03 David Svoboda [BZ #5666] 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); }