diff options
Diffstat (limited to 'gdb/remote-os9k.c')
-rw-r--r-- | gdb/remote-os9k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-os9k.c b/gdb/remote-os9k.c index 3e1a1ee..53ca13d 100644 --- a/gdb/remote-os9k.c +++ b/gdb/remote-os9k.c @@ -493,8 +493,8 @@ rombug_wait (int pid, struct target_waitstatus *status) new_symfile_objfile (obj_sec->objfile, 1, 0); offs = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS); memcpy (offs, symfile_objfile->section_offsets, SIZEOF_SECTION_OFFSETS); - ANOFFSET (offs, SECT_OFF_DATA (symfile_objfile)) = addr; - ANOFFSET (offs, SECT_OFF_BSS (symfile_objfile)) = addr; + offs->offsets[SECT_OFF_DATA (symfile_objfile)] = addr; + offs->offsets[SECT_OFF_BSS (symfile_objfile)] = addr; objfile_relocate (symfile_objfile, offs); } |