diff options
Diffstat (limited to 'arch/x86_64/reloc.h')
-rw-r--r-- | arch/x86_64/reloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86_64/reloc.h b/arch/x86_64/reloc.h index 28cf7cc1..30f65614 100644 --- a/arch/x86_64/reloc.h +++ b/arch/x86_64/reloc.h @@ -7,7 +7,7 @@ #define IS_COPY(x) ((x)==R_X86_64_COPY) #define IS_PLT(x) ((x)==R_X86_64_JUMP_SLOT) -static inline void do_single_reloc( +static inline int do_single_reloc( struct dso *self, unsigned char *base_addr, size_t *reloc_addr, int type, size_t addend, Sym *sym, size_t sym_size, @@ -43,4 +43,5 @@ static inline void do_single_reloc( : 0 - self->tls_offset) + addend; break; } + return 0; } |