diff options
author | Michael Forney <mforney@mforney.org> | 2022-02-11 12:45:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2022-02-11 12:45:40 +0000 |
commit | 5d0d011be3403bf6fa62e8a7cc72762ef66e17a0 (patch) | |
tree | 41dc2f75b9a7753f80e40bfde2857046943b2f69 /bfd/bfd.c | |
parent | d203a0647fc73cad89307c37ae060b45aa28eab4 (diff) | |
download | gdb-5d0d011be3403bf6fa62e8a7cc72762ef66e17a0.zip gdb-5d0d011be3403bf6fa62e8a7cc72762ef66e17a0.tar.gz gdb-5d0d011be3403bf6fa62e8a7cc72762ef66e17a0.tar.bz2 |
bfd: Remove return with expression in void function
* bfd.c (bfd_set_gp_value): Remove return with expression
in void function.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r-- | bfd/bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } /* |