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:
parent
a670b57c56
commit
ff3827a62b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user