summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-03-03 19:53:04 +0000
committerJeremy Allison <jra@samba.org>2003-03-03 19:53:04 +0000
commitf434f039e606c368eacb995e30c859daa85c64eb (patch)
treecdb96ad694eeed5e326d837469de5d1837397be1 /source3/lib
parent56d0621264b3e62d8672dbb1aa4422b7cb5afc59 (diff)
downloadsamba-f434f039e606c368eacb995e30c859daa85c64eb.tar.gz
samba-f434f039e606c368eacb995e30c859daa85c64eb.tar.bz2
samba-f434f039e606c368eacb995e30c859daa85c64eb.zip
dlsym takes a const char *.
Jeremy. (This used to be commit ff3827a62b37342b13fd8b4eafd256d91428c02b)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/system.c2
1 files changed, 1 insertions, 1 deletions
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);