mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
Fix some warnings caused by size_t having varying size.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@641 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
3285403d3c
commit
acb96c96fd
4 changed files with 5 additions and 5 deletions
|
|
@ -405,7 +405,7 @@ int pa__init(pa_core *c, pa_module*m) {
|
|||
u->frame_size = frame_size;
|
||||
u->fragment_size = period_size;
|
||||
|
||||
pa_log_info(__FILE__": using %u fragments of size %u bytes.", periods, u->fragment_size);
|
||||
pa_log_info(__FILE__": using %u fragments of size %lu bytes.", periods, (long unsigned)u->fragment_size);
|
||||
|
||||
u->silence.memblock = pa_memblock_new(u->silence.length = u->fragment_size, c->memblock_stat);
|
||||
assert(u->silence.memblock);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue