Fix error message typo.
bfd/ * elfnn-riscv.c (_bfd_riscv_relax_align): Add space between alignment and to in error message.
This commit is contained in:
parent
e4ec19878f
commit
671275c35e
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2017-11-18 Jim Wilson <jimw@sifive.com>
|
||||||
|
|
||||||
|
* elfnn-riscv.c (_bfd_riscv_relax_align): Add space between alignment
|
||||||
|
and to in error message.
|
||||||
|
|
||||||
2017-11-17 H.J. Lu <hongjiu.lu@intel.com>
|
2017-11-17 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* elfxx-x86.c (_bfd_x86_elf_link_setup_gnu_properties): Pass
|
* elfxx-x86.c (_bfd_x86_elf_link_setup_gnu_properties): Pass
|
||||||
|
|
|
@ -3077,7 +3077,7 @@ _bfd_riscv_relax_align (bfd *abfd, asection *sec,
|
||||||
if (rel->r_addend < nop_bytes)
|
if (rel->r_addend < nop_bytes)
|
||||||
{
|
{
|
||||||
(*_bfd_error_handler)
|
(*_bfd_error_handler)
|
||||||
(_("%B(%A+0x%lx): %d bytes required for alignment"
|
(_("%B(%A+0x%lx): %d bytes required for alignment "
|
||||||
"to %d-byte boundary, but only %d present"),
|
"to %d-byte boundary, but only %d present"),
|
||||||
abfd, sym_sec, rel->r_offset, nop_bytes, alignment, rel->r_addend);
|
abfd, sym_sec, rel->r_offset, nop_bytes, alignment, rel->r_addend);
|
||||||
bfd_set_error (bfd_error_bad_value);
|
bfd_set_error (bfd_error_bad_value);
|
||||||
|
|
Loading…
Add table
Reference in a new issue