diff options
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 9900b3b..329eb4e 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -581,16 +581,16 @@ remote_wait (status) objfile_relocate (symfile_objfile, offs); { struct obj_section *s; - bfd *bfd; + bfd *abfd; - bfd = symfile_objfile->obfd; + abfd = symfile_objfile->obfd; for (s = symfile_objfile->sections; s < symfile_objfile->sections_end; ++s) { flagword flags; - flags = bfd_get_section_flags (bfd, s->sec_ptr); + flags = bfd_get_section_flags (abfd, s->sec_ptr); if (flags & SEC_CODE) { |