topology: use size_t for calc_block_size()

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2019-12-13 18:26:20 +01:00
parent 012bd3b28c
commit f1f5b48d0c

View file

@ -163,11 +163,11 @@ static int write_elem_block(snd_tplg_t *tplg,
return 0; return 0;
} }
static int calc_block_size(struct list_head *base) static size_t calc_block_size(struct list_head *base)
{ {
struct list_head *pos; struct list_head *pos;
struct tplg_elem *elem; struct tplg_elem *elem;
int size = 0; size_t size = 0;
list_for_each(pos, base) { list_for_each(pos, base) {
@ -185,14 +185,14 @@ static int calc_block_size(struct list_head *base)
static int write_block(snd_tplg_t *tplg, struct list_head *base, int type) static int write_block(snd_tplg_t *tplg, struct list_head *base, int type)
{ {
int size; size_t size;
/* calculate the block size in bytes for all elems in this list */ /* calculate the block size in bytes for all elems in this list */
size = calc_block_size(base); size = calc_block_size(base);
if (size <= 0) if (size == 0)
return size; return size;
verbose(tplg, " block size for type %d is %d\n", type, size); verbose(tplg, " block size for type %d is %zd\n", type, size);
/* write each elem for this block */ /* write each elem for this block */
switch (type) { switch (type) {