]> git.sesse.net Git - vlc/commitdiff
Simplification
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:23:54 +0000 (22:23 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:23:54 +0000 (22:23 +0000)
src/input/access.c

index 2c032eadc3c7ea3117f782f79b20ce958cd5ca83..a2d1dee6196a929b3f5ff76e5411a89d34dd035a 100644 (file)
@@ -95,8 +95,7 @@ static access_t *access2_InternalNew( vlc_object_t *p_obj, const char *psz_acces
     else
     {
         p_access->p_module =
-            module_Need( p_access, "access2", p_access->psz_access,
-                         b_quick ? VLC_TRUE : VLC_FALSE );
+            module_Need( p_access, "access2", p_access->psz_access, b_quick );
     }
 
     if( p_access->p_module == NULL )