diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-05-01 17:46:32 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-05-01 17:46:32 +0000 |
commit | 944f08abcea5a400d587696f03efe8c5304f7f5e (patch) | |
tree | 67c2f86119d3428ae2805e1edfe7faa5e95888eb /gdb/exec.c | |
parent | 3471d59d313d799d8c4a281114a9a12f98337b03 (diff) | |
download | gdb-944f08abcea5a400d587696f03efe8c5304f7f5e.zip gdb-944f08abcea5a400d587696f03efe8c5304f7f5e.tar.gz gdb-944f08abcea5a400d587696f03efe8c5304f7f5e.tar.bz2 |
* exec.c (print_section_info): Add missing '\n'.
Diffstat (limited to 'gdb/exec.c')
-rw-r--r-- | gdb/exec.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -543,10 +543,8 @@ print_section_info (struct target_ops *t, bfd *abfd) wrap_here (" "); printf_filtered (_("file type %s.\n"), bfd_get_target (abfd)); if (abfd == exec_bfd) - { - printf_filtered (_("\tEntry point: ")); - fputs_filtered (paddress (bfd_get_start_address (abfd)), gdb_stdout); - } + printf_filtered (_("\tEntry point: %s\n"), + paddress (bfd_get_start_address (abfd))); for (p = t->to_sections; p < t->to_sections_end; p++) { printf_filtered ("\t%s", hex_string_custom (p->addr, wid)); |