]> git.sesse.net Git - vlc/commitdiff
Indentation fix
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 22 Feb 2007 19:50:29 +0000 (19:50 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 22 Feb 2007 19:50:29 +0000 (19:50 +0000)
src/playlist/thread.c

index 90628751584bcdc72fbe9a95a03439216977f8e0..42df00db86b54713ccc497ac4f10677a2908a8b5 100644 (file)
@@ -180,11 +180,10 @@ int playlist_ThreadDestroy( playlist_t * p_playlist )
  */
 static void RunControlThread ( playlist_t *p_playlist )
 {
-   int i_loops = 0;
-
-   /* Tell above that we're ready */
-   vlc_thread_ready( p_playlist );
+    int i_loops = 0;
 
+    /* Tell above that we're ready */
+    vlc_thread_ready( p_playlist );
     while( !p_playlist->b_die )
     {
         i_loops++;
@@ -205,7 +204,6 @@ static void RunControlThread ( playlist_t *p_playlist )
             PL_UNLOCK;
         }
     }
-
     playlist_LastLoop( p_playlist );
 }