mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-11 13:30:02 -05:00
fdsem: remove superfluous parameter in call to pa_fdsem_new_shm
This parameter was never assigned, so just remove it. Note that the only current user of this function is shmasyncq.c, which is unused - we don't even build it. But I fixed it up anyway. Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
parent
43b6a67fa8
commit
6c42cfe324
3 changed files with 4 additions and 4 deletions
|
|
@ -100,11 +100,10 @@ pa_fdsem *pa_fdsem_open_shm(pa_fdsem_data *data, int event_fd) {
|
|||
return f;
|
||||
}
|
||||
|
||||
pa_fdsem *pa_fdsem_new_shm(pa_fdsem_data *data, int* event_fd) {
|
||||
pa_fdsem *pa_fdsem_new_shm(pa_fdsem_data *data) {
|
||||
pa_fdsem *f = NULL;
|
||||
|
||||
pa_assert(data);
|
||||
pa_assert(event_fd);
|
||||
|
||||
#ifdef HAVE_SYS_EVENTFD_H
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue