aboutsummaryrefslogtreecommitdiff
path: root/binutils/objdump.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2022-05-31 11:07:37 +0930
committerAlan Modra <amodra@gmail.com>2022-05-31 11:25:09 +0930
commit99f647e200a9a329e80fe813bc708e89927ea5ad (patch)
tree99e69231ebeb09ee48b8d1b780d0dfe0f78ba97f /binutils/objdump.c
parent8b294b1fc74e0cd46a0462dfc2f68cffd9728cc3 (diff)
downloadgdb-99f647e200a9a329e80fe813bc708e89927ea5ad.zip
gdb-99f647e200a9a329e80fe813bc708e89927ea5ad.tar.gz
gdb-99f647e200a9a329e80fe813bc708e89927ea5ad.tar.bz2
Trailing spaces in objdump -r header
git commit 202be274a4 went a little wild in removing trailing spaces in gas/testsuite/gas/i386/{secidx.d,secrel.d}, causing x86_64-w64-mingw32 +FAIL: i386 secrel reloc x86_64-w64-mingw32 +FAIL: i386 secidx reloc I could have just replaced the trailing space, but let's fix the objdump output instead. Touches lots of testsuite files.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r--binutils/objdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c
index f585c1b..e8fa8ca 100644
--- a/binutils/objdump.c
+++ b/binutils/objdump.c
@@ -4901,7 +4901,7 @@ dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount)
bfd_sprintf_vma (abfd, buf, (bfd_vma) -1);
width = strlen (buf) - 7;
}
- printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
+ printf ("OFFSET %*s TYPE %*s VALUE\n", width, "", 12, "");
}
last_filename = NULL;