1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

Userland: Fix wrong signature of dladdr

This function is supposed to take a `const void *addr` as first
parameter, but we took a `void *addr`.

https://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/baselib-dladdr-3.html
This commit is contained in:
Fabian Dellwing 2023-05-03 11:49:31 +02:00 committed by Jelle Raaijmakers
parent 87e95ceb69
commit 36a26d7fa8
4 changed files with 5 additions and 5 deletions

View file

@ -72,7 +72,7 @@ void* dlsym(void* handle, char const* symbol_name)
return result.value();
}
int dladdr(void* addr, Dl_info* info)
int dladdr(void const* addr, Dl_info* info)
{
auto result = __dladdr(addr, info);
if (result.is_error()) {