mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
padsp: fix build on FreeBSD (use same ioctl signature as glibc)
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/277>
This commit is contained in:
parent
3e6ba5b000
commit
e94c81aef6
1 changed files with 1 additions and 1 deletions
|
|
@ -2394,7 +2394,7 @@ fail:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __GLIBC__
|
#if !defined(__GLIBC__) && !defined(__FreeBSD__)
|
||||||
int ioctl(int fd, int request, ...) {
|
int ioctl(int fd, int request, ...) {
|
||||||
#else
|
#else
|
||||||
int ioctl(int fd, unsigned long request, ...) {
|
int ioctl(int fd, unsigned long request, ...) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue