diff options
-rw-r--r-- | source4/lib/ldb/common/ldb_modules.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index 21225acd3f..6e92fc510d 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -318,8 +318,7 @@ static void *ldb_dso_load_symbol(struct ldb_context *ldb, const char *name, return NULL; } - sym = (int (*)(void))dlsym(handle, symbol); - + sym = dlsym(handle, symbol); if (sym == NULL) { ldb_debug(ldb, LDB_DEBUG_ERROR, "no symbol `%s' found in %s: %s", symbol, path, dlerror()); return NULL; |