diff options
author | Jeremy Allison <jra@samba.org> | 2003-03-03 19:53:04 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-03-03 19:53:04 +0000 |
commit | f434f039e606c368eacb995e30c859daa85c64eb (patch) | |
tree | cdb96ad694eeed5e326d837469de5d1837397be1 /source3/lib | |
parent | 56d0621264b3e62d8672dbb1aa4422b7cb5afc59 (diff) | |
download | samba-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.c | 2 |
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); |