summaryrefslogtreecommitdiff
path: root/Userland/Services/EchoServer
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-02 15:15:14 +0100
committerTim Flynn <trflynn89@pm.me>2023-01-02 11:06:15 -0500
commitb83cb09db194f0e18ef76f36aea3801959295f22 (patch)
tree00ccdbb2c1e7766326cc2c3442f3de95cf1c0b8a /Userland/Services/EchoServer
parent9d61e59cebbbb1d4fc91d534cceb1316faf44e0b (diff)
downloadserenity-b83cb09db194f0e18ef76f36aea3801959295f22.zip
Everywhere: Fix badly-formatted includes
In 7c5e30daaa615ad3a2ef55222423a747ac0a1227, the focus was "only" on Userland/Libraries/, whereas this commit cleans up the remaining headers in the repo, and any new badly-formatted include.
Diffstat (limited to 'Userland/Services/EchoServer')
-rw-r--r--Userland/Services/EchoServer/Client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/EchoServer/Client.cpp b/Userland/Services/EchoServer/Client.cpp
index 2538ffa24f..f7203d5115 100644
--- a/Userland/Services/EchoServer/Client.cpp
+++ b/Userland/Services/EchoServer/Client.cpp
@@ -5,7 +5,7 @@
*/
#include "Client.h"
-#include "LibCore/EventLoop.h"
+#include <LibCore/EventLoop.h>
Client::Client(int id, NonnullOwnPtr<Core::Stream::TCPSocket> socket)
: m_id(id)