Fix a problematic message with the STM32L4XX fixup on 32-bit hosts.

* elf32-arm.c (elf32_arm_write_section): Force offset output as
	long (%ld).
This commit is contained in:
Christophe Lyon 2015-11-17 11:35:08 +00:00 committed by Nick Clifton
parent e7286c5668
commit eee926f28e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2015-11-17 Christophe Lyon <christophe.lyon@linaro.org>
* elf32-arm.c (elf32_arm_write_section): Force offset output as
long (%ld).
2015-11-13 Tristan Gingold <gingold@adacore.com>
* version.m4: Bump version to 2.26.51

View File

@ -17010,10 +17010,10 @@ elf32_arm_write_section (bfd *output_bfd,
(*_bfd_error_handler)
(_("%B(%#x): error: Cannot create STM32L4XX veneer. "
"Jump out of range by %d bytes. "
"Jump out of range by %ld bytes. "
"Cannot encode branch instruction. "),
output_bfd,
stm32l4xx_errnode->vma - 4,
(long) (stm32l4xx_errnode->vma - 4),
out_of_range);
continue;
}