From 8ce11aee9169298021927cb09a117e7008c0b687 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 3 Mar 2003 19:52:27 +0000 Subject: dlysym takes a const char *. Jeremy. (This used to be commit 54e5413a9267b7279cbde0ec129478a5a9c3116c) --- source3/lib/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/system.c b/source3/lib/system.c index 18cccda935..6ff97b88da 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -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); -- cgit