summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibAudio/ConnectionFromClient.h
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2022-04-27 12:40:04 +0200
committerAndreas Kling <kling@serenityos.org>2022-04-29 18:05:42 +0200
commit581e4dc25bc711501a00890cca2df4776ebd89fe (patch)
treec98e492734c6cc122ba8c949668ec7b10b7e18bb /Userland/Libraries/LibAudio/ConnectionFromClient.h
parent56e8e0daa171bbda873583d801de9391734ab4e4 (diff)
downloadserenity-581e4dc25bc711501a00890cca2df4776ebd89fe.zip
LibAudio: Make includes work from ports
The endpoints were included with a relative path that does not work by default when compiling ports. Include them from a root-relative path instead.
Diffstat (limited to 'Userland/Libraries/LibAudio/ConnectionFromClient.h')
-rw-r--r--Userland/Libraries/LibAudio/ConnectionFromClient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibAudio/ConnectionFromClient.h b/Userland/Libraries/LibAudio/ConnectionFromClient.h
index 8d204c8def..cefd5ba331 100644
--- a/Userland/Libraries/LibAudio/ConnectionFromClient.h
+++ b/Userland/Libraries/LibAudio/ConnectionFromClient.h
@@ -11,8 +11,6 @@
#include <AK/FixedArray.h>
#include <AK/NonnullOwnPtr.h>
#include <AK/OwnPtr.h>
-#include <AudioServer/AudioClientEndpoint.h>
-#include <AudioServer/AudioServerEndpoint.h>
#include <LibAudio/Buffer.h>
#include <LibAudio/UserSampleQueue.h>
#include <LibCore/EventLoop.h>
@@ -20,6 +18,8 @@
#include <LibIPC/ConnectionToServer.h>
#include <LibThreading/Mutex.h>
#include <LibThreading/Thread.h>
+#include <Userland/Services/AudioServer/AudioClientEndpoint.h>
+#include <Userland/Services/AudioServer/AudioServerEndpoint.h>
namespace Audio {