summaryrefslogtreecommitdiff
path: root/Kernel/TTY
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-10-04 13:46:11 +0300
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commit91db482ad333459a8513c98e6488087f327f5d2d (patch)
tree711d0313bd8caa4ee2e02246d63b786a153129be /Kernel/TTY
parent5ff318cf3ac7d12470c357ba0bac8cd7ffa10e3e (diff)
downloadserenity-91db482ad333459a8513c98e6488087f327f5d2d.zip
Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal
No functional change.
Diffstat (limited to 'Kernel/TTY')
-rw-r--r--Kernel/TTY/VirtualConsole.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY/VirtualConsole.cpp b/Kernel/TTY/VirtualConsole.cpp
index ddb6e8c311..52da68204b 100644
--- a/Kernel/TTY/VirtualConsole.cpp
+++ b/Kernel/TTY/VirtualConsole.cpp
@@ -9,7 +9,7 @@
#include <AK/StdLibExtras.h>
#include <Kernel/Arch/Delay.h>
#if ARCH(X86_64)
-# include <Kernel/Arch/x86/common/PCSpeaker.h>
+# include <Kernel/Arch/x86_64/PCSpeaker.h>
#endif
#include <Kernel/CommandLine.h>
#include <Kernel/Debug.h>