bfd: Remove return with expression in void function

* bfd.c (bfd_set_gp_value): Remove return with expression
        in void function.
This commit is contained in:
Michael Forney
2022-02-11 12:45:40 +00:00
committed by Nick Clifton
parent d203a0647f
commit 5d0d011be3
2 changed files with 6 additions and 1 deletions

View File

@ -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> 2022-02-09 Nick Clifton <nickc@redhat.com>
* config.bfd: Move pending obsolesence targets into the definitely * config.bfd: Move pending obsolesence targets into the definitely

View File

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