From 9be99d951bcd216b886400952361898f728f4016 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 18 Jul 2013 20:36:21 +0000 Subject: [PATCH] Correct alignment in note output --- contrib/binutils/binutils/readelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/binutils/binutils/readelf.c b/contrib/binutils/binutils/readelf.c index c39d27b04db1..0546bc15e35f 100644 --- a/contrib/binutils/binutils/readelf.c +++ b/contrib/binutils/binutils/readelf.c @@ -9250,7 +9250,7 @@ process_note (Elf_Internal_Note *pnote) note type strings. */ nt = get_note_type (pnote->type); - printf (" %s\t\t0x%08lx\t%s\n", + printf (" %-13s 0x%08lx\t%s\n", pnote->namesz ? pnote->namedata : "(NONE)", pnote->descsz, nt); return 1;