[vlc-commits] vlc_block_helper.h: fix weird indentation.
Frédéric Yhuel
git at videolan.org
Mon Mar 12 10:41:20 CET 2012
vlc | branch: master | Frédéric Yhuel <fyhuel at viotech.net> | Wed Mar 7 17:19:43 2012 +0100| [c5d86459ecc4013637db40e35fcc832edc4257da] | committer: Jean-Baptiste Kempf
vlc_block_helper.h: fix weird indentation.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c5d86459ecc4013637db40e35fcc832edc4257da
---
include/vlc_block_helper.h | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/include/vlc_block_helper.h b/include/vlc_block_helper.h
index 903a0f0..f076fb3 100644
--- a/include/vlc_block_helper.h
+++ b/include/vlc_block_helper.h
@@ -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;
}
More information about the vlc-commits
mailing list