summaryrefslogtreecommitdiff
path: root/Kernel/TTY/MasterPTY.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 20:33:43 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-06-04 21:32:34 +0200
commit336fb4f3135c4f41228f1393d85183dc44e8b92b (patch)
treee2425128c665a86bb6a4796a0d1fc42e14f3faf4 /Kernel/TTY/MasterPTY.cpp
parent927926b9247522b4c8854d48a79b55599108cff2 (diff)
downloadserenity-336fb4f3135c4f41228f1393d85183dc44e8b92b.zip
Kernel: Move InterruptDisabler to the Interrupts subdirectory
Diffstat (limited to 'Kernel/TTY/MasterPTY.cpp')
-rw-r--r--Kernel/TTY/MasterPTY.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY/MasterPTY.cpp b/Kernel/TTY/MasterPTY.cpp
index 2fdba628a5..f4c8652a8b 100644
--- a/Kernel/TTY/MasterPTY.cpp
+++ b/Kernel/TTY/MasterPTY.cpp
@@ -8,7 +8,7 @@
#include <Kernel/API/POSIX/errno.h>
#include <Kernel/API/POSIX/signal_numbers.h>
#include <Kernel/Debug.h>
-#include <Kernel/InterruptDisabler.h>
+#include <Kernel/Interrupts/InterruptDisabler.h>
#include <Kernel/TTY/MasterPTY.h>
#include <Kernel/TTY/PTYMultiplexer.h>
#include <Kernel/TTY/SlavePTY.h>