summaryrefslogtreecommitdiff
path: root/Kernel/Devices
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-06 20:29:48 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-06 20:29:48 +0200
commit644c887594e962439826180b9eb612338fda7538 (patch)
tree7a73b014ff117cd769487b314ac07ae2c09052e6 /Kernel/Devices
parentf2580dcfebadced9d1c58625e89b4a349cab2636 (diff)
downloadserenity-644c887594e962439826180b9eb612338fda7538.zip
Kernel: Move FIFO into FileSystem/ and Socket+LocalSocket into Net/.
Diffstat (limited to 'Kernel/Devices')
-rw-r--r--Kernel/Devices/Device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Devices/Device.h b/Kernel/Devices/Device.h
index 2e1c291d1f..fd9e2a5d1d 100644
--- a/Kernel/Devices/Device.h
+++ b/Kernel/Devices/Device.h
@@ -2,7 +2,7 @@
#include <AK/Retainable.h>
#include <AK/Types.h>
-#include "FileDescriptor.h"
+#include <Kernel/FileSystem/FileDescriptor.h>
class Process;