Commit dbdf09a8 authored by Maxim Bublis's avatar Maxim Bublis Committed by Rémi Denis-Courmont

Fixed warning on assignment as a condition without parentheses.

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent f0b34833
......@@ -174,7 +174,8 @@ static int AVI_ChunkRead_list( stream_t *s, avi_chunk_t *p_container )
}
p_container->common.p_last = p_chk;
if( i_ret = AVI_ChunkRead( s, p_chk, p_container ) )
i_ret = AVI_ChunkRead( s, p_chk, p_container );
if( i_ret )
{
break;
}
......
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