]> git.sesse.net Git - vlc/commitdiff
Cosmetic fix
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 29 Oct 2006 16:30:48 +0000 (16:30 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 29 Oct 2006 16:30:48 +0000 (16:30 +0000)
modules/access/file.c

index 7573646473bf224c55f2cef1aa5ee0695def6299..d50c01d51e5fcc9c29c354adfa1ef434d49be2b9 100644 (file)
@@ -228,7 +228,7 @@ static int Open( vlc_object_t *p_this )
         }
 #elif defined( HAVE_SYS_STAT_H )
         else if( S_ISREG(stat_info.st_mode) || S_ISBLK(stat_info.st_mode)
-        || ( S_ISCHR(stat_info.st_mode) && (stat_info.st_size > 0) ) )
+         || ( S_ISCHR(stat_info.st_mode) && (stat_info.st_size > 0) ) )
         {
             p_sys->b_seekable = VLC_TRUE;
             p_access->info.i_size = stat_info.st_size;