summaryrefslogtreecommitdiff
path: root/Servers/AudioServer/ASEventLoop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/AudioServer/ASEventLoop.cpp')
-rw-r--r--Servers/AudioServer/ASEventLoop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/AudioServer/ASEventLoop.cpp b/Servers/AudioServer/ASEventLoop.cpp
index 876e8e9379..2c59b4f4d7 100644
--- a/Servers/AudioServer/ASEventLoop.cpp
+++ b/Servers/AudioServer/ASEventLoop.cpp
@@ -9,7 +9,7 @@ ASEventLoop::ASEventLoop()
unlink("/tmp/asportal");
m_server_sock.listen("/tmp/asportal");
m_server_sock.on_ready_to_accept = [this] {
- auto* client_socket = m_server_sock.accept();
+ auto client_socket = m_server_sock.accept();
if (!client_socket) {
dbg() << "AudioServer: accept failed.";
return;