Skip to content

Commit

Permalink
Kernel: Run clang-format on Process.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Mar 1, 2020
1 parent 7e6c206 commit bb7dd63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel/Process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb7dd63

Please sign in to comment.