diff options
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 4882769..4f70d3f 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -138,7 +138,8 @@ add_to_objfile_sections (struct bfd *abfd, struct bfd_section *asect, section.objfile = objfile; section.the_bfd_section = asect; section.ovly_mapped = 0; - obstack_grow (&objfile->objfile_obstack, (char *) §ion, sizeof (section)); + obstack_grow (&objfile->objfile_obstack, + (char *) §ion, sizeof (section)); objfile->sections_end = (struct obj_section *) (((size_t) objfile->sections_end) + 1); } |