diff options
author | Nick Clifton <nickc@redhat.com> | 2022-07-01 15:08:44 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-07-01 15:08:44 +0100 |
commit | 1dd024239b551e55a867880d898a63fcf479b717 (patch) | |
tree | e092ee23a7d8952195259f7779240deebe33a2ab /binutils | |
parent | 2899490953879ccb22e64d6b8bc09fe9b9cdc5a7 (diff) | |
download | fsf-binutils-gdb-1dd024239b551e55a867880d898a63fcf479b717.zip fsf-binutils-gdb-1dd024239b551e55a867880d898a63fcf479b717.tar.gz fsf-binutils-gdb-1dd024239b551e55a867880d898a63fcf479b717.tar.bz2 |
Add newline to the end of the rnglists displsy.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dwarf.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 2a1ca58..4d13b0f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2022-07-01 Nick Clifton <nickc@redhat.com> + + * dwarf.c (display_debug_rnglists): Add newline at end of listing. + 2022-06-30 Nick Clifton <nickc@redhat.com> * dwarf.c (dwarf_select_sections_by_name): If the entry's value is diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 4504b0f..535d4ab 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -8202,6 +8202,7 @@ display_debug_rnglists (struct dwarf_section *section) putchar ('\n'); } + putchar ('\n'); return 1; } |