diff options
author | Keith Seitz <keiths@redhat.com> | 2018-03-26 10:34:28 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2018-03-26 10:34:28 -0700 |
commit | 4f7ae6f5059924a5acc4490880449d6410dc5c93 (patch) | |
tree | 3a8c1dea26f94e23b595d0a1d204691ce2316518 /gdb/symfile.c | |
parent | 5cd3e386e0ac84b0ba1e0737853f4504ba24f677 (diff) | |
download | gdb-4f7ae6f5059924a5acc4490880449d6410dc5c93.zip gdb-4f7ae6f5059924a5acc4490880449d6410dc5c93.tar.gz gdb-4f7ae6f5059924a5acc4490880449d6410dc5c93.tar.bz2 |
Remove struct keyword from section_addr_info
Buildbot pointed out a failiure in windows-nat.c:
../../binutils-gdb/gdb/windows-nat.c:582:10: error: using typedef-name 'section_addr_info' after 'struct'
struct section_addr_info *addrs;
^~~~~~~~~~~~~~~~~
In file included from ../../binutils-gdb/gdb/windows-nat.c:49:0:
../../binutils-gdb/gdb/symfile.h:75:37: note: 'section_addr_info' has a previous declaration here
typedef std::vector<other_sections> section_addr_info;
^~~~~~~~~~~~~~~~~
A recursive grep of the sources for "struct section_addr_info" reveals one
additional reference in a comment. In both cases, this patch simply removes
the struct keyword.
gdb/ChangeLog:
* symfile.c (place_section): Remove "struct" from section_addr_info
in comment.
* windows-nat.c (struct safe_symbol_file_add_args) <addrs>: Remove
"struct" keyword from section_addr_info.
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 9571664..1e5297e 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -412,7 +412,7 @@ place_section (bfd *abfd, asection *sect, void *obj) arg->lowest = start_addr + bfd_get_section_size (sect); } -/* Store struct section_addr_info as prepared (made relative and with SECTINDEX +/* Store section_addr_info as prepared (made relative and with SECTINDEX filled-in) by addr_info_make_relative into SECTION_OFFSETS of NUM_SECTIONS entries. */ |