From bb7dd63f7491b431e377cc1fde0b6d6f95398cdd Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 1 Mar 2020 21:16:12 +0100 Subject: [PATCH] Kernel: Run clang-format on Process.cpp --- Kernel/Process.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index c9bcfd0cfe..58f0702715 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -762,8 +762,8 @@ void Process::kill_threads_except_self() for_each_thread([&](Thread& thread) { if (&thread == Thread::current - || thread.state() == Thread::State::Dead - || thread.state() == Thread::State::Dying) + || thread.state() == Thread::State::Dead + || thread.state() == Thread::State::Dying) return IterationDecision::Continue; // At this point, we have no joiner anymore