diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
commit | f0a58b0b8c4dde0a186617d71b3280d8ce9379d0 (patch) | |
tree | 58bb74315c8a60f3bd667a4e66f624a586e91ecb /gdb/somread.c | |
parent | bd415eabb699c911e5186fc9efc5a867e45ba7af (diff) | |
download | gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.zip gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.gz gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index 92d5492..4605c26 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; } } |