[vlc-devel] commit: Fix unused flag variable (Jean-Marc Dressler )
git version control
git at videolan.org
Thu Jan 15 16:44:12 CET 2009
vlc | branch: master | Jean-Marc Dressler <jmd at objectik.com> | Thu Jan 15 14:59:34 2009 +0100| [2eb8e7dc9c7ddb3ac73b7d0e082cccff2d6f1fd7] | committer: Rémi Denis-Courmont
Fix unused flag variable
Signed-off-by: Rémi Denis-Courmont <rdenis at simphalempin.com>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2eb8e7dc9c7ddb3ac73b7d0e082cccff2d6f1fd7
---
src/modules/os.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/modules/os.c b/src/modules/os.c
index d1d8384..c40986f 100644
--- a/src/modules/os.c
+++ b/src/modules/os.c
@@ -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)",
More information about the vlc-devel
mailing list