mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04: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
|
|
@ -294,7 +294,7 @@ char *pa_scache_list_to_string(pa_core *c) {
|
|||
"\tindex: <%u>\n"
|
||||
"\tsample spec: <%s>\n"
|
||||
"\tchannel map: <%s>\n"
|
||||
"\tlength: <%u>\n"
|
||||
"\tlength: <%lu>\n"
|
||||
"\tduration: <%0.1fs>\n"
|
||||
"\tvolume: <%s>\n"
|
||||
"\tlazy: %s\n"
|
||||
|
|
@ -303,7 +303,7 @@ char *pa_scache_list_to_string(pa_core *c) {
|
|||
e->index,
|
||||
ss,
|
||||
cm,
|
||||
e->memchunk.memblock ? e->memchunk.length : 0,
|
||||
(long unsigned)(e->memchunk.memblock ? e->memchunk.length : 0),
|
||||
l,
|
||||
pa_cvolume_snprint(cv, sizeof(cv), &e->volume),
|
||||
e->lazy ? "yes" : "no",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue