* target.h (struct section_table): Rename to ...
[deliverable/binutils-gdb.git] / gdb / solib.c
index 18bec09e7d38117e011f92482794a7dd35dbb271..9eebd488524a20af08183af2f1d0b4b822ca341c 100644 (file)
@@ -347,7 +347,7 @@ solib_map_sections (void *arg)
 {
   struct so_list *so = (struct so_list *) arg; /* catch_errors bogon */
   char *filename;
-  struct section_table *p;
+  struct target_section *p;
   struct cleanup *old_chain;
   bfd *abfd;
 
@@ -849,7 +849,7 @@ int
 solib_contains_address_p (const struct so_list *const solib,
                          CORE_ADDR address)
 {
-  struct section_table *p;
+  struct target_section *p;
 
   for (p = solib->sections; p < solib->sections_end; p++)
     if (p->addr <= address && address < p->endaddr)
This page took 0.024553 seconds and 4 git commands to generate.