1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

dlsym takes a const char *.

Jeremy.
This commit is contained in:
Jeremy Allison 0001-01-01 00:00:00 +00:00
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);