[vlc-commits] lua: simplify
    Pierre Ynard 
    git at videolan.org
       
    Wed Mar  9 02:27:30 CET 2011
    
    
  
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Wed Mar  9 02:27:37 2011 +0100| [22da19b45262070fb08aaa8376fa1422c9b6aa8f] | committer: Pierre Ynard
lua: simplify
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=22da19b45262070fb08aaa8376fa1422c9b6aa8f
---
 modules/lua/intf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/lua/intf.c b/modules/lua/intf.c
index fd1bf66..7756e16 100644
--- a/modules/lua/intf.c
+++ b/modules/lua/intf.c
@@ -390,7 +390,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
         free( psz_config );
     }
 
-    if( b_config_set == false )
+    if( !b_config_set )
     {
         lua_newtable( L );
         lua_setglobal( L, "config" );
    
    
More information about the vlc-commits
mailing list