diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-08 04:07:47 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-10 15:14:29 +0100 |
commit | 1f79f41508d0f9c30be812bea9b84fd7900a273e (patch) | |
tree | ae8efb65ac29dca012388a0b56f582d8b1c4f8de | |
parent | 25a60624713990c637f125e094e968ff4655307c (diff) |
bfin: fix a gcc warning
-rw-r--r-- | ldso/ldso/bfin/dl-sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/bfin/dl-sysdep.h b/ldso/ldso/bfin/dl-sysdep.h index 5758117ba..4262a2637 100644 --- a/ldso/ldso/bfin/dl-sysdep.h +++ b/ldso/ldso/bfin/dl-sysdep.h @@ -93,6 +93,6 @@ static __always_inline void elf_machine_relative (DL_LOADADDR_TYPE load_off, const Elf32_Addr rel_addr, Elf32_Word relative_count) { - return 0; + return; } #endif |