Commit 38a58dec authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

OMX IL: clean up dll_* macros

parent 7553630d
......@@ -57,11 +57,11 @@ static const char *ppsz_dll_list[] =
* defines
*****************************************************************************/
#if defined(HAVE_DL_DLOPEN)
# define dll_open(name) dlopen( name, RTLD_NOW );
# define dll_close(handle) dlclose(handle);
# define dll_open(name) dlopen( name, RTLD_NOW )
# define dll_close(handle) dlclose(handle)
#else
# define dll_open(name) NULL
# define dll_close(handle)
# define dll_open(name) (NULL)
# define dll_close(handle) (void)0
#endif
/*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment