summaryrefslogtreecommitdiff
path: root/gdb/somread.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2000-08-27 22:30:29 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2000-08-27 22:30:29 +0000
commit50ea21b7b34effab5d2a63ab61279dce243fa74d (patch)
tree9f23224160cb85446b4d6e7b979d7576f6d62145 /gdb/somread.c
parent50c6ba7775a6cafe02f9a0e2339667285419562f (diff)
downloadgdb-50ea21b7b34effab5d2a63ab61279dce243fa74d.tar.gz
2000-08-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* pa64solib.c (pa64_solib_load_symbols): Don't use ANOFFSET as an lvalue. * xcoffread.c (xcoff_symfile_offsets): Ditto * somsolib.c (som_solib_section_offsets): Ditto. * somread.c (som_symfile_offsets): Ditto. * rs6000-nat.c (vmap_symtab): Ditto. * remote-vx.c (vx_add_symbols): Ditto. * remote-os9k.c (rombug_wait): Ditto.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r--gdb/somread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somread.c b/gdb/somread.c
index 92d54921621..4605c26e4a8 100644
--- a/gdb/somread.c
+++ b/gdb/somread.c
@@ -477,7 +477,7 @@ som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs)
text_addr = addrs->other[i].addr;
for (i = 0; i < SECT_OFF_MAX; i++)
- ANOFFSET (objfile->section_offsets, i) = text_addr;
+ (objfile->section_offsets)->offsets[i] = text_addr;
}
}