summaryrefslogtreecommitdiff
path: root/Kernel/Net/UDPSocket.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 12:36:40 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 12:36:40 +0200
commitab43658c5537c03d075f8abc57fe90e940023779 (patch)
tree01bd0f73784dd42372dd8a8f065a3a8c6b3d9858 /Kernel/Net/UDPSocket.cpp
parent072ea7eece8607efec8e2824307b0a6209e4d014 (diff)
downloadserenity-ab43658c5537c03d075f8abc57fe90e940023779.zip
Kernel: Move devices into Kernel/Devices/.
Diffstat (limited to 'Kernel/Net/UDPSocket.cpp')
-rw-r--r--Kernel/Net/UDPSocket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/UDPSocket.cpp b/Kernel/Net/UDPSocket.cpp
index ff8c2baa82..6c4170d3e6 100644
--- a/Kernel/Net/UDPSocket.cpp
+++ b/Kernel/Net/UDPSocket.cpp
@@ -2,7 +2,7 @@
#include <Kernel/Net/UDP.h>
#include <Kernel/Net/NetworkAdapter.h>
#include <Kernel/Process.h>
-#include <Kernel/RandomDevice.h>
+#include <Kernel/Devices/RandomDevice.h>
#include <Kernel/Net/Routing.h>
Lockable<HashMap<word, UDPSocket*>>& UDPSocket::sockets_by_port()