diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:36:40 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 12:36:40 +0200 |
commit | ab43658c5537c03d075f8abc57fe90e940023779 (patch) | |
tree | 01bd0f73784dd42372dd8a8f065a3a8c6b3d9858 /Kernel/Net/UDPSocket.cpp | |
parent | 072ea7eece8607efec8e2824307b0a6209e4d014 (diff) | |
download | serenity-ab43658c5537c03d075f8abc57fe90e940023779.zip |
Kernel: Move devices into Kernel/Devices/.
Diffstat (limited to 'Kernel/Net/UDPSocket.cpp')
-rw-r--r-- | Kernel/Net/UDPSocket.cpp | 2 |
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() |