fix sign confusion

This commit is contained in:
Wim Taymans 2019-01-07 15:52:42 +01:00
parent 74e5f9fbcf
commit e918f9f77c
60 changed files with 164 additions and 146 deletions

View file

@ -420,7 +420,7 @@ static int negotiate_buffers(struct data *data)
static void fill_buffer(struct data *data, struct spa_buffer *buffers[], int id)
{
int i;
uint32_t i;
struct spa_buffer *b = buffers[id];
for (i = 0; i < b->datas[0].maxsize; i++) {
@ -432,7 +432,8 @@ static void fill_buffer(struct data *data, struct spa_buffer *buffers[], int id)
static void run_convert(struct data *data)
{
struct spa_buffer *b;
int res, i, j;
int res;
uint32_t i, j;
{
struct spa_command cmd = SPA_NODE_COMMAND_INIT(SPA_NODE_COMMAND_Start);