Browse Source

bfd: Remove return with expression in void function

* bfd.c (bfd_set_gp_value): Remove return with expression
        in void function.
gdb-12-branch
Michael Forney 4 years ago
committed by Nick Clifton
parent
commit
5d0d011be3
  1. 5
      bfd/ChangeLog
  2. 2
      bfd/bfd.c

5
bfd/ChangeLog

@ -1,3 +1,8 @@
2022-02-11 Michael Forney <mforney@mforney.org>
* bfd.c (bfd_set_gp_value): Remove return with expression
in void function.
2022-02-09 Nick Clifton <nickc@redhat.com>
* config.bfd: Move pending obsolesence targets into the definitely

2
bfd/bfd.c

@ -1876,7 +1876,7 @@ DESCRIPTION
void
bfd_set_gp_value (bfd *abfd, bfd_vma v)
{
return _bfd_set_gp_value (abfd, v);
_bfd_set_gp_value (abfd, v);
}
/*

Loading…
Cancel
Save