* corelow.c (add_to_thread_list): Need a cast to go from PTR to
authorJim Kingdon <jkingdon@engr.sgi.com>
Sun, 17 Oct 1993 02:05:58 +0000 (02:05 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sun, 17 Oct 1993 02:05:58 +0000 (02:05 +0000)
asection *.

gdb/ChangeLog
gdb/corelow.c

index 9ff409f6389d4decb40be4bc2eec3805dfc11bcf..82db3834c69b1a85dbce5fc093bd9cb36fa270b4 100644 (file)
@@ -1,5 +1,8 @@
 Sat Oct 16 20:47:30 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * corelow.c (add_to_thread_list): Need a cast to go from PTR to
+       asection *.
+
        * infrun.c: Add comment about signals.
 
        * fork-child.c (fork_inferior): Remove CREATE_INFERIOR_HOOK again.
index 407940c961fb091966d8c08a6753c85fa08f1afb..1cebc48985ec9f14ed71217893596fa05c71113a 100644 (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;
This page took 0.029217 seconds and 4 git commands to generate.