]> git.sesse.net Git - vlc/commitdiff
vlc_block_helper.h: fix weird indentation.
authorFrédéric Yhuel <fyhuel@viotech.net>
Wed, 7 Mar 2012 16:19:43 +0000 (17:19 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 12 Mar 2012 09:41:37 +0000 (10:41 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
include/vlc_block_helper.h

index 903a0f0857a8fcac12b2863d6a0c46b267d473a1..f076fb3fbe689d04cd71bdae6c80df4064db1645 100644 (file)
@@ -121,11 +121,9 @@ static inline block_t *block_BytestreamPop( block_bytestream_t *p_bytestream )
     while( p_block->p_next && p_block->p_next->p_next )
         p_block = p_block->p_next;
 
-    {
-        block_t *p_block_old = p_block;
-        p_block = p_block->p_next;
-        p_block_old->p_next = NULL;
-    }
+    block_t *p_block_old = p_block;
+    p_block = p_block->p_next;
+    p_block_old->p_next = NULL;
 
     return p_block;
 }