This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] ppc32 use of %x in einfo format, typo fix


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e3fbc3da1342714b4943300a5a590b73f00acf08

commit e3fbc3da1342714b4943300a5a590b73f00acf08
Author: Alan Modra <amodra@gmail.com>
Date:   Tue Jul 11 22:38:54 2017 +0930

    ppc32 use of %x in einfo format, typo fix
    
    	* elf32-ppc.c (ppc_elf_relocate_section): Fix typo.

Diff:
---
 bfd/ChangeLog   | 4 ++++
 bfd/elf32-ppc.c | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index b60bda1..bc6cdfa 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
 2017-07-11  Alan Modra  <amodra@gmail.com>
 
+	* elf32-ppc.c (ppc_elf_relocate_section): Fix typo.
+
+2017-07-11  Alan Modra  <amodra@gmail.com>
+
 	* elf32-ppc.c (ppc_elf_relocate_section): Emit "unexpected
 	instruction" error using _bfd_error_handler, not einfo.
 
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c
index 1adca7e..27d62ab 100644
--- a/bfd/elf32-ppc.c
+++ b/bfd/elf32-ppc.c
@@ -8286,7 +8286,7 @@ ppc_elf_relocate_section (bfd *output_bfd,
 	      else
 		_bfd_error_handler
 		  /* xgettext:c-format */
-		  (_("%B(%A+#Lx): error: %s with unexpected instruction %#x"),
+		  (_("%B(%A+%#Lx): error: %s with unexpected instruction %#x"),
 		   input_bfd, input_section, rel->r_offset,
 		   "R_PPC_ADDR16_HA", insn);
 	    }
@@ -8321,7 +8321,7 @@ ppc_elf_relocate_section (bfd *output_bfd,
 	      else
 		_bfd_error_handler
 		  /* xgettext:c-format */
-		  (_("%B(%A+#Lx): error: %s with unexpected instruction %#x"),
+		  (_("%B(%A+%#Lx): error: %s with unexpected instruction %#x"),
 		   input_bfd, input_section, rel->r_offset,
 		   "R_PPC_ADDR16_LO", insn);
 	    }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]