aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-05-29 22:45:28 +0930
committerAlan Modra <amodra@gmail.com>2021-05-29 22:47:44 +0930
commit63e47e10725f93a4c07ced83050b917bc9e6b205 (patch)
treec62c2ad7d4b4a7171a48c051756306bac0eac8fd /binutils
parent3067d0b1beebca59eb6148dc141436de3131a316 (diff)
downloadfsf-binutils-gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.zip
fsf-binutils-gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.tar.gz
fsf-binutils-gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.tar.bz2
Re: readelf and objdump help
Fix a last-minute change.. * objdump (usage): Add missing \n.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/objdump.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index cd7bd6e..9ff312c 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,5 +1,9 @@
2021-05-29 Alan Modra <amodra@gmail.com>
+ * objdump (usage): Add missing \n.
+
+2021-05-29 Alan Modra <amodra@gmail.com>
+
* readelf.c (parse_args): Call dwarf_select_sections_all on
--debug-dump without optarg.
(usage): Associate -w and --debug-dump options closely.
diff --git a/binutils/objdump.c b/binutils/objdump.c
index 977f817..a7b8303 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -254,17 +254,17 @@ usage (FILE *stream, int status)
separate debuginfo files\n"));
#if DEFAULT_FOR_FOLLOW_LINKS
fprintf (stream, _("\
- -WK,--dwarf=follow-links\
+ -WK,--dwarf=follow-links\n\
Follow links to separate debug info files (default)\n"));
fprintf (stream, _("\
- -WN,--dwarf=no-follow-links\
+ -WN,--dwarf=no-follow-links\n\
Do not follow links to separate debug info files\n"));
#else
fprintf (stream, _("\
- -WK,--dwarf=follow-links\
+ -WK,--dwarf=follow-links\n\
Follow links to separate debug info files\n"));
fprintf (stream, _("\
- -WN,--dwarf=no-follow-links\
+ -WN,--dwarf=no-follow-links\n\
Do not follow links to separate debug info files\n\
(default)\n"));
#endif