Remove a useless cast in sc_dlopen()

This commit is contained in:
Ludovic Rousseau 2011-06-21 13:56:40 +02:00
parent d3c13fd471
commit b9c43b9214

View File

@ -75,7 +75,7 @@ int sc_dlclose(void *handle)
/* Use native interfaces */
void *sc_dlopen(const char *filename)
{
return (void *)dlopen(filename, RTLD_LAZY);
return dlopen(filename, RTLD_LAZY);
}
void *sc_dlsym(void *handle, const char *symbol)