Commit c5d86459 authored by Frédéric Yhuel's avatar Frédéric Yhuel Committed by Jean-Baptiste Kempf

vlc_block_helper.h: fix weird indentation.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent df1f5e21
...@@ -121,11 +121,9 @@ static inline block_t *block_BytestreamPop( block_bytestream_t *p_bytestream ) ...@@ -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 ) while( p_block->p_next && p_block->p_next->p_next )
p_block = p_block->p_next; p_block = p_block->p_next;
{ block_t *p_block_old = p_block;
block_t *p_block_old = p_block; p_block = p_block->p_next;
p_block = p_block->p_next; p_block_old->p_next = NULL;
p_block_old->p_next = NULL;
}
return p_block; return p_block;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment