mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-05 13:30:00 -05:00
topology: make vebose output more nice
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
4dcceb5f86
commit
c9e9ee3c40
1 changed files with 10 additions and 8 deletions
|
|
@ -294,9 +294,9 @@ int tplg_write_data(snd_tplg_t *tplg)
|
|||
size = calc_block_size(wptr->list);
|
||||
if (size == 0)
|
||||
continue;
|
||||
verbose(tplg, " block size for type %s (%d:%d) is %zd\n",
|
||||
verbose(tplg, "block size for type %s (%d:%d) is 0x%zx/%zd\n",
|
||||
wptr->name, wptr->type,
|
||||
wptr->tsoc, size);
|
||||
wptr->tsoc, size, size);
|
||||
ret = write_elem_block(tplg, wptr->list, size,
|
||||
wptr->tsoc, wptr->name);
|
||||
if (ret < 0) {
|
||||
|
|
@ -306,5 +306,7 @@ int tplg_write_data(snd_tplg_t *tplg)
|
|||
}
|
||||
}
|
||||
|
||||
verbose(tplg, "total size is 0x%zx/%zd\n", tplg->out_pos, tplg->out_pos);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue