mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
add a few more gcc warning flags and fix quite a few problems found by doing so
This commit is contained in:
parent
047eb52b52
commit
b7026bf248
99 changed files with 810 additions and 776 deletions
|
|
@ -135,9 +135,9 @@ static void thread_func(void *userdata) {
|
|||
|
||||
} else {
|
||||
|
||||
u->memchunk.length = l;
|
||||
u->memchunk.length = (size_t) l;
|
||||
pa_source_post(u->source, &u->memchunk);
|
||||
u->memchunk.index += l;
|
||||
u->memchunk.index += (size_t) l;
|
||||
|
||||
if (u->memchunk.index >= pa_memblock_get_length(u->memchunk.memblock)) {
|
||||
pa_memblock_unref(u->memchunk.memblock);
|
||||
|
|
@ -149,7 +149,7 @@ static void thread_func(void *userdata) {
|
|||
}
|
||||
|
||||
/* Hmm, nothing to do. Let's sleep */
|
||||
pollfd->events = u->source->thread_info.state == PA_SOURCE_RUNNING ? POLLIN : 0;
|
||||
pollfd->events = (short) (u->source->thread_info.state == PA_SOURCE_RUNNING ? POLLIN : 0);
|
||||
|
||||
if ((ret = pa_rtpoll_run(u->rtpoll, TRUE)) < 0)
|
||||
goto fail;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue