Remove unnecessary reinterpret_cast
Change-Id: Id2ddf4e74bc66825206d1287f899d716537a68d0
This commit is contained in:
parent
57c5a5562b
commit
c9d1658397
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue