diff options
author | Ralph Seichter <gitlab@seichter.de> | 2020-09-10 20:25:05 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2020-09-28 15:44:38 +0300 |
commit | 0050e5863a9a796b8bfe0dbd810e6c244b1c8e34 (patch) | |
tree | fde6116b1af250d6d585a07c267be8790119eb9d /src | |
parent | 410db7d21651877dc15936f5449784e07b55fb01 (diff) | |
download | pulseaudio-0050e5863a9a796b8bfe0dbd810e6c244b1c8e34.tar.gz |
macos: Add missing import statement
Add missing import of util.h. This fixes a build failure with the
Xcode 12 command line tools which manifests as follows:
error: implicit declaration of function 'pa_thread_make_realtime'
is invalid in C99 [-Werror,-Wimplicit-function-declaration]
Ref https://trac.macports.org/ticket/61107
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/macosx/module-coreaudio-device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/macosx/module-coreaudio-device.c b/src/modules/macosx/module-coreaudio-device.c index b9dffb937..9bdac111f 100644 --- a/src/modules/macosx/module-coreaudio-device.c +++ b/src/modules/macosx/module-coreaudio-device.c @@ -27,6 +27,7 @@ #include <config.h> #endif +#include <pulse/util.h> #include <pulse/xmalloc.h> #include <pulsecore/sink.h> |