tile: Fix cut-and-paste bug in commit fcccd5128.

This commit is contained in:
Chris Metcalf 2014-04-04 15:03:47 -04:00
parent 1c21d115e3
commit d42f3448a7
2 changed files with 7 additions and 2 deletions

View File

@ -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]

View 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);
}