diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-17 02:05:58 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-17 02:05:58 +0000 |
commit | 4cc5b060c2530728e36b8368023f45ede789de3c (patch) | |
tree | ee900395084b0cad6f7f64ee1aa3bc78e3c63651 /gdb/corelow.c | |
parent | 749e538bc872c9c238ab792dbdcc9156d3363150 (diff) | |
download | binutils-gdb-4cc5b060c2530728e36b8368023f45ede789de3c.tar.gz |
* corelow.c (add_to_thread_list): Need a cast to go from PTR to
asection *.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 407940c961f..1cebc48985e 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -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; |