diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2019-09-26 15:24:13 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2019-10-03 17:04:56 +0100 |
commit | d344b407dddfb59003f646ff29ac0850e7eec588 (patch) | |
tree | c6c23314d9a03d1aa93c3c8fb1cd3eb9ce7959c9 /binutils/objdump.c | |
parent | ad613f1d0693e02bdc86047c479315d5f969e2f7 (diff) | |
download | gdb-d344b407dddfb59003f646ff29ac0850e7eec588.zip gdb-d344b407dddfb59003f646ff29ac0850e7eec588.tar.gz gdb-d344b407dddfb59003f646ff29ac0850e7eec588.tar.bz2 |
binutils: spaces -> tabs in CTF parts of objdump and readelf
For readelf particularly, this is more or less whistling in the dark:
there are hundreds of lines where spaces are used where tabs were used
on adjacent lines.
New in v5.
binutils/
* objdump.c (main): Fix tabdamage.
* readelf.c (CTF_DUMP): Likewise.
(options): Likewise.
(dump_section_as_ctf): Likewise.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index ae50d87..a2a0645 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -4548,11 +4548,11 @@ main (int argc, char **argv) case OPTION_DWARF_CHECK: dwarf_check = TRUE; break; - case OPTION_CTF: - dump_ctf_section_info = TRUE; - dump_ctf_section_name = xstrdup (optarg); - seenflag = TRUE; - break; + case OPTION_CTF: + dump_ctf_section_info = TRUE; + dump_ctf_section_name = xstrdup (optarg); + seenflag = TRUE; + break; case OPTION_CTF_PARENT: dump_ctf_parent_name = xstrdup (optarg); break; |