summaryrefslogtreecommitdiff
path: root/Userland/Utilities/aplay.cpp
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2022-07-17 11:31:01 +0200
committerLinus Groh <mail@linusgroh.de>2022-07-19 11:17:45 +0100
commit3f59356c79a044e7f2c49a7e456f8309d47508fd (patch)
tree86a7b701f55a40c97be5d7b02a545aa91c67d076 /Userland/Utilities/aplay.cpp
parent70846d701cc117176eca150c54649639ec5e8337 (diff)
downloadserenity-3f59356c79a044e7f2c49a7e456f8309d47508fd.zip
LibAudio: Rename ConnectionFromClient to ConnectionToServer
The automatic nomenclature change for IPC sockets got this one wrong.
Diffstat (limited to 'Userland/Utilities/aplay.cpp')
-rw-r--r--Userland/Utilities/aplay.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/aplay.cpp b/Userland/Utilities/aplay.cpp
index b3b0d489fc..cbf97462cc 100644
--- a/Userland/Utilities/aplay.cpp
+++ b/Userland/Utilities/aplay.cpp
@@ -6,7 +6,7 @@
*/
#include <AK/Types.h>
-#include <LibAudio/ConnectionFromClient.h>
+#include <LibAudio/ConnectionToServer.h>
#include <LibAudio/Loader.h>
#include <LibAudio/Resampler.h>
#include <LibCore/ArgsParser.h>
@@ -40,7 +40,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
Core::EventLoop loop;
- auto audio_client = TRY(Audio::ConnectionFromClient::try_create());
+ auto audio_client = TRY(Audio::ConnectionToServer::try_create());
auto maybe_loader = Audio::Loader::create(path);
if (maybe_loader.is_error()) {
warnln("Failed to load audio file: {}", maybe_loader.error().description);