diff options
Diffstat (limited to 'elf/dl-profstub.c')
-rw-r--r-- | elf/dl-profstub.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/elf/dl-profstub.c b/elf/dl-profstub.c index 10db640769..55304a73df 100644 --- a/elf/dl-profstub.c +++ b/elf/dl-profstub.c @@ -28,9 +28,10 @@ extern struct link_map *_dl_profile_map; void -_dl_mcount_wrapper (ElfW(Addr) selfpc) +_dl_mcount_wrapper (void *selfpc) { - _dl_mcount ((ElfW(Addr)) __builtin_return_address (0), selfpc); + _dl_mcount ((ElfW(Addr)) __builtin_return_address (0), + (ElfW(Addr)) selfpc); } |