am f56a2f5e: Merge "Remove unnecessary reinterpret_cast"

* commit 'f56a2f5ed2508e0743581003420c0f2d9cb54c7b':
  Remove unnecessary reinterpret_cast
This commit is contained in:
Dmitriy Ivanov 2014-10-28 04:51:51 +00:00 committed by Android Git Automerger
commit 85d770211b

View File

@ -194,7 +194,7 @@ static void insert_soinfo_into_debug_map(soinfo* info) {
// Copy the necessary fields into the debug structure.
link_map* map = &(info->link_map_head);
map->l_addr = info->load_bias;
map->l_name = reinterpret_cast<char*>(info->name);
map->l_name = info->name;
map->l_ld = info->dynamic;
// Stick the new library at the end of the list.