* corelow.c (add_to_thread_list): Need a cast to go from PTR to

asection *.
This commit is contained in:
Jim Kingdon 1993-10-17 02:05:58 +00:00
parent 749e538bc8
commit 4cc5b060c2
2 changed files with 4 additions and 1 deletions

View file

@ -90,7 +90,7 @@ add_to_thread_list (abfd, asect, reg_sect_arg)
PTR reg_sect_arg;
{
int thread_id;
asection *reg_sect = reg_sect_arg;
asection *reg_sect = (asection *) reg_sect_arg;
if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
return;