summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-15 21:16:04 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-15 21:16:04 +0100
commite42f090ed3e0915fde8b47b61447f053af9a8e4c (patch)
treee33095d95e3888ba741f58d82a54b3e4241d5f65 /Kernel/init.cpp
parentd0137f0e96191e6ebc4efa3565fd7f6f1b2bce2e (diff)
downloadserenity-e42f090ed3e0915fde8b47b61447f053af9a8e4c.zip
Rename WindowComposer -> WindowServer.
I keep referring to it as the windowing server anyway.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r--Kernel/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp
index 8001460b58..d7c42823f0 100644
--- a/Kernel/init.cpp
+++ b/Kernel/init.cpp
@@ -137,8 +137,8 @@ static void init_stage2()
Process::create_kernel_process("spawn_stress", spawn_stress);
#endif
- extern void WindowComposer_main();
- Process::create_kernel_process("WindowComposer", WindowComposer_main);
+ extern void WindowServer_main();
+ Process::create_kernel_process("WindowServer", WindowServer_main);
current->sys$exit(0);
ASSERT_NOT_REACHED();