From 0cdf339b90599d7abae30a94eb3e8cb9bf4b346d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Mon, 27 Oct 2014 19:44:24 +0100 Subject: [PATCH] VOC: remove trailing space --- modules/demux/voc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/voc.c b/modules/demux/voc.c index af4f1633da..9fe503c3fc 100644 --- a/modules/demux/voc.c +++ b/modules/demux/voc.c @@ -282,7 +282,7 @@ static int ReadBlockHeader( demux_t *p_demux ) /* read subsequent block 1 */ if( stream_Read( p_demux->s, buf, 4 ) < 4 ) return VLC_EGENERIC; /* EOF */ - + i_block_size = GetDWLE( buf ) >> 8; msg_Dbg( p_demux, "new block: type: %u, size: %u", (unsigned)*buf, i_block_size );