[vlc-commits] CDDA: fix indentation

Jean-Baptiste Kempf git at videolan.org
Fri Oct 19 12:37:20 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Oct 19 12:08:57 2012 +0200| [ae05c479d818ae2c881bccf40ab66f69bf227c54] | committer: Jean-Baptiste Kempf

CDDA: fix indentation

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ae05c479d818ae2c881bccf40ab66f69bf227c54
---

 modules/access/cdda.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/access/cdda.c b/modules/access/cdda.c
index ac7c849..85090d7 100644
--- a/modules/access/cdda.c
+++ b/modules/access/cdda.c
@@ -160,11 +160,11 @@ static int Open( vlc_object_t *p_this )
     STANDARD_BLOCK_ACCESS_INIT
     p_sys->vcddev = vcddev;
 
-   /* Do we play a single track ? */
-   p_sys->i_track = var_InheritInteger( p_access, "cdda-track" ) - 1;
+    /* Do we play a single track ? */
+    p_sys->i_track = var_InheritInteger( p_access, "cdda-track" ) - 1;
 
-   if( p_sys->i_track < 0 )
-   {
+    if( p_sys->i_track < 0 )
+    {
         /* We only do separate items if the whole disc is requested */
         input_thread_t *p_input = access_GetParentInput( p_access );
 



More information about the vlc-commits mailing list