(_dl_close): Add cast to avoid warning about const incorrectness.

This commit is contained in:
Ulrich Drepper 1999-05-17 09:56:54 +00:00
parent 2d547a959e
commit 1592541240

View File

@ -166,7 +166,7 @@ _dl_close (struct link_map *map)
free (imap->l_searchlist.r_list);
if (imap->l_phdr_allocated)
free (imap->l_phdr);
free ((void *) imap->l_phdr);
free (imap);
}