diff options
author | Jeremy Allison <jra@samba.org> | 2003-03-03 19:52:27 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-03-03 19:52:27 +0000 |
commit | 8ce11aee9169298021927cb09a117e7008c0b687 (patch) | |
tree | 4991ae37ddc1c0169a2533fe3d025abe76eb04a1 /source3 | |
parent | cc7f40f4b7c090e73f7cd54e89e3927c8bff0004 (diff) | |
download | samba-8ce11aee9169298021927cb09a117e7008c0b687.tar.gz samba-8ce11aee9169298021927cb09a117e7008c0b687.tar.bz2 samba-8ce11aee9169298021927cb09a117e7008c0b687.zip |
dlysym takes a const char *.
Jeremy.
(This used to be commit 54e5413a9267b7279cbde0ec129478a5a9c3116c)
Diffstat (limited to 'source3')
-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); |