mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
* objfiles.c (build_objfile_section_table): Cast return value
from obstack_finish.
This commit is contained in:
parent
f36492275c
commit
ccd87bf2b4
@ -1,3 +1,8 @@
|
||||
Tue Apr 13 08:28:26 1993 Jim Kingdon (kingdon@cygnus.com)
|
||||
|
||||
* objfiles.c (build_objfile_section_table): Cast return value
|
||||
from obstack_finish.
|
||||
|
||||
Mon Apr 12 10:53:50 1993 Jim Kingdon (kingdon@cygnus.com)
|
||||
|
||||
* config/rs6000/tm-rs6000.h, rs6000-tdep.c: Move FRAME_CHAIN
|
||||
|
@ -100,7 +100,8 @@ build_objfile_section_table (objfile)
|
||||
|
||||
objfile->sections_end = 0;
|
||||
bfd_map_over_sections (objfile->obfd, add_to_objfile_sections, (char *)objfile);
|
||||
objfile->sections = obstack_finish (&objfile->psymbol_obstack);
|
||||
objfile->sections = (struct obj_section *)
|
||||
obstack_finish (&objfile->psymbol_obstack);
|
||||
objfile->sections_end = objfile->sections + (int) objfile->sections_end;
|
||||
return(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user