* core.c (core_file_info), exec.c (exec_file_info): Print file

type.  Use printf_filtered.
This commit is contained in:
John Gilmore 1991-10-25 09:32:06 +00:00
parent 9cb602e111
commit c58215f248
2 changed files with 12 additions and 6 deletions

View File

@ -1,5 +1,8 @@
Fri Oct 25 02:02:13 1991 John Gilmore (gnu at cygnus.com)
* core.c (core_file_info), exec.c (exec_file_info): Print file
type. Use printf_filtered.
* valops.c (value_fetch_lazy): Avoid 0-length fetches.
Thu Oct 24 23:06:40 1991 Fred Fish (fnf at cygnus.com)

View File

@ -279,16 +279,19 @@ core_files_info (t)
{
struct section_table *p;
printf ("\tCore file `%s'.\n", bfd_get_filename(core_bfd));
printf_filtered ("\t`%s', ", bfd_get_filename(core_bfd));
wrap_here (" ");
printf_filtered ("file type %s.\n", bfd_get_target(core_bfd));
for (p = t->sections; p < t->sections_end; p++) {
printf("\t%s", local_hex_string_custom (p->addr, "08"));
printf(" - %s is %s", local_hex_string_custom (p->endaddr, "08"),
bfd_section_name (p->bfd, p->sec_ptr));
printf_filtered ("\t%s", local_hex_string_custom (p->addr, "08"));
printf_filtered (" - %s is %s",
local_hex_string_custom (p->endaddr, "08"),
bfd_section_name (p->bfd, p->sec_ptr));
if (p->bfd != core_bfd) {
printf(" in %s", bfd_get_filename (p->bfd));
printf_filtered (" in %s", bfd_get_filename (p->bfd));
}
printf ("\n");
printf_filtered ("\n");
}
}