From: Joel Brobecker Date: Thu, 1 May 2008 17:46:32 +0000 (+0000) Subject: * exec.c (print_section_info): Add missing '\n'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=944f08abcea5a400d587696f03efe8c5304f7f5e;p=binutils-gdb.git * exec.c (print_section_info): Add missing '\n'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9d1d6bdfdd4..4818d15bcec 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-05-01 Nick Roberts + + * exec.c (print_section_info): Add missing '\n'. + 2008-05-01 Vladimir Prus * thread.c (add_thread): Move observer call to ... diff --git a/gdb/exec.c b/gdb/exec.c index ea57fcd67cd..dad3f33c249 100644 --- a/gdb/exec.c +++ b/gdb/exec.c @@ -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));