From 9eee633b68649c94b2404f65d5c9a00c3ed1f068 Mon Sep 17 00:00:00 2001 From: Steve Ellcey Date: Thu, 31 Aug 2017 10:34:55 -0700 Subject: Change argument type passed to ifunc resolvers * sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type in resolver call. --- sysdeps/aarch64/dl-irel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/aarch64') diff --git a/sysdeps/aarch64/dl-irel.h b/sysdeps/aarch64/dl-irel.h index 4a8027510b..a794c826aa 100644 --- a/sysdeps/aarch64/dl-irel.h +++ b/sysdeps/aarch64/dl-irel.h @@ -31,7 +31,7 @@ static inline ElfW(Addr) __attribute ((always_inline)) elf_ifunc_invoke (ElfW(Addr) addr) { - return ((ElfW(Addr) (*) (unsigned long int)) (addr)) (GLRO(dl_hwcap)); + return ((ElfW(Addr) (*) (uint64_t)) (addr)) (GLRO(dl_hwcap)); } static inline void -- cgit 1.4.1