From f434f039e606c368eacb995e30c859daa85c64eb Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 3 Mar 2003 19:53:04 +0000 Subject: dlsym takes a const char *. Jeremy. (This used to be commit ff3827a62b37342b13fd8b4eafd256d91428c02b) --- source3/lib/system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') 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