[vlc-commits] playlist: sort: remove tabs

Hugo Beauzée-Luyssen git at videolan.org
Wed Mar 29 09:57:57 CEST 2017


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Wed Mar 29 09:57:27 2017 +0200| [00df3862be955df55f8f5c2c6d6ae277470914a7] | committer: Hugo Beauzée-Luyssen

playlist: sort: remove tabs

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

 src/playlist/sort.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/playlist/sort.c b/src/playlist/sort.c
index a5c97a6..c0982cd 100644
--- a/src/playlist/sort.c
+++ b/src/playlist/sort.c
@@ -213,7 +213,7 @@ int playlist_RecursiveNodeSort( playlist_t *p_playlist, playlist_item_t *p_node,
  */
 
 #define SORTFN( SORT, first, second ) static inline int proto_##SORT \
-	( const playlist_item_t *first, const playlist_item_t *second )
+    ( const playlist_item_t *first, const playlist_item_t *second )
 
 SORTFN( SORT_TRACK_NUMBER, first, second )
 {
@@ -358,14 +358,14 @@ SORTFN( SORT_URI, first, second )
 #endif
 
 #define DEF( s ) \
-	static int cmp_a_##s(const void *l,const void *r) \
-	{ return proto_##s(*(const playlist_item_t *const *)l, \
+    static int cmp_a_##s(const void *l,const void *r) \
+    { return proto_##s(*(const playlist_item_t *const *)l, \
                            *(const playlist_item_t *const *)r); } \
-	static int cmp_d_##s(const void *l,const void *r) \
-	{ return -1*proto_##s(*(const playlist_item_t * const *)l, \
+    static int cmp_d_##s(const void *l,const void *r) \
+    { return -1*proto_##s(*(const playlist_item_t * const *)l, \
                               *(const playlist_item_t * const *)r); }
 
-	VLC_DEFINE_SORT_FUNCTIONS
+    VLC_DEFINE_SORT_FUNCTIONS
 
 #undef  DEF
 



More information about the vlc-commits mailing list