Commit 26696085 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Signedness fix

parent ce8d55ce
......@@ -736,7 +736,7 @@ static block_t *U8toU16( filter_t *p_filter, block_t *p_block )
static block_t *Swap16( filter_t *p_filter, block_t *p_block )
{
VLC_UNUSED(p_filter);
int i;
size_t i;
uint8_t *p_in = (uint8_t *)p_block->p_buffer;
uint8_t tmp;
......@@ -754,7 +754,7 @@ static block_t *Swap16( filter_t *p_filter, block_t *p_block )
static block_t *Swap24( filter_t *p_filter, block_t *p_block )
{
VLC_UNUSED(p_filter);
int i;
size_t i;
uint8_t *p_in = (uint8_t *)p_block->p_buffer;
uint8_t tmp;
......
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