[vlc-commits] libVLC: remove tabs and trailing spaces

Jean-Baptiste Kempf git at videolan.org
Thu Sep 15 16:00:05 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Sep 15 15:59:21 2011 +0200| [ace5352f6c5aafc22d71c1af1cc0752b32a0f6de] | committer: Jean-Baptiste Kempf

libVLC: remove tabs and trailing spaces

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

 lib/media_player.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/lib/media_player.c b/lib/media_player.c
index 58f62a3..02c1570 100644
--- a/lib/media_player.c
+++ b/lib/media_player.c
@@ -1,8 +1,7 @@
 /*****************************************************************************
  * media_player.c: Libvlc API Media Instance management functions
  *****************************************************************************
- * Copyright (C) 2005-2009 the VideoLAN team
- * $Id$
+ * Copyright (C) 2005-2011 the VideoLAN team
  *
  * Authors: Clément Stenac <zorglub at videolan.org>
  *
@@ -52,7 +51,7 @@ static const vlc_action_t libvlc_navigate_to_action[] =
     ACTIONID_NAV_RIGHT
 };
 
-static const uint32_t libvlc_navigate_to_action_size =			\
+static const uint32_t libvlc_navigate_to_action_size =                        \
   sizeof( libvlc_navigate_to_action ) / sizeof( libvlc_navigate_to_action[0] );
 
 
@@ -1292,7 +1291,7 @@ int libvlc_media_player_is_seekable( libvlc_media_player_t *p_mi )
 }
 
 void libvlc_media_player_navigate( libvlc_media_player_t* p_mi,
-				   unsigned navigate )
+                                   unsigned navigate )
 {
     input_thread_t *p_input_thread;
 
@@ -1304,7 +1303,7 @@ void libvlc_media_player_navigate( libvlc_media_player_t* p_mi,
       return;
 
     var_SetInteger( p_mi->p_libvlc_instance->p_libvlc_int,
-		    "key-action", libvlc_navigate_to_action[navigate] );
+                    "key-action", libvlc_navigate_to_action[navigate] );
 
     vlc_object_release( p_input_thread );
 }



More information about the vlc-commits mailing list