diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-04-01 14:17:20 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-04-01 14:17:20 +0000 |
commit | 97606a13b0bcb57387f42415c8fb3952de1c4d19 (patch) | |
tree | 86c761b21522ebec55460d39fabde22e7e51c20c /gdb/symfile.c | |
parent | 276e5094105165957c30fe374de8a57b604cb19a (diff) | |
download | gdb-97606a13b0bcb57387f42415c8fb3952de1c4d19.zip gdb-97606a13b0bcb57387f42415c8fb3952de1c4d19.tar.gz gdb-97606a13b0bcb57387f42415c8fb3952de1c4d19.tar.bz2 |
* symfile.c (symfile_relocate_debug_section): Update call to
bfd_simple_get_relocated_section_contents.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 8380b27..7d7886a 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -3573,7 +3573,7 @@ symfile_relocate_debug_section (bfd *abfd, asection *sectp, bfd_byte *buf) all sections begin at 0. */ bfd_map_over_sections (abfd, symfile_dummy_outputs, NULL); - return bfd_simple_get_relocated_section_contents (abfd, sectp, buf); + return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL); } void |