1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00

dlsym takes a const char *.

Jeremy.
This commit is contained in:
Jeremy Allison -
parent a670b57c56
commit ff3827a62b

View File

@ -1192,7 +1192,7 @@ void *sys_dlopen(const char *name, int flags)
#endif
}
void *sys_dlsym(void *handle, char *symbol)
void *sys_dlsym(void *handle, const char *symbol)
{
#if defined(HAVE_DLSYM)
return dlsym(handle, symbol);