浏览代码

Kernel: Run clang-format on Process.cpp

Andreas Kling 5 年之前
父节点
当前提交
bb7dd63f74
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Kernel/Process.cpp

+ 2 - 2
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