Commit 2eb8e7dc authored by Jean-Marc Dressler's avatar Jean-Marc Dressler Committed by Rémi Denis-Courmont

Fix unused flag variable

Signed-off-by: default avatarRémi Denis-Courmont <rdenis@simphalempin.com>
parent 944fd06f
......@@ -228,7 +228,7 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
const int flags = 0;
# endif
handle = dlopen( psz_file, RTLD_NOW );
handle = dlopen( psz_file, flags );
if( handle == NULL )
{
msg_Warn( p_this, "cannot load module `%s' (%s)",
......
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