]> git.sesse.net Git - vlc/commitdiff
Fix unused flag variable
authorJean-Marc Dressler <jmd@objectik.com>
Thu, 15 Jan 2009 13:59:34 +0000 (14:59 +0100)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Thu, 15 Jan 2009 15:43:28 +0000 (17:43 +0200)
Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
src/modules/os.c

index d1d8384ab1edceb1e70ef35edc1d6fea12fcf04f..c40986fd2f432b880b7c8c617d358650da3d8852 100644 (file)
@@ -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)",