mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:38:11 +00:00
Kernel: Fix always-true comparison warnings
This commit is contained in:
parent
b9f30c6f2a
commit
fda9f394d1
2 changed files with 2 additions and 2 deletions
|
@ -460,7 +460,7 @@ Process* Scheduler::colonel()
|
|||
|
||||
UNMAP_AFTER_INIT void Scheduler::initialize()
|
||||
{
|
||||
VERIFY(&Processor::current() != nullptr); // sanity check
|
||||
VERIFY(Processor::is_initialized()); // sanity check
|
||||
|
||||
RefPtr<Thread> idle_thread;
|
||||
g_finalizer_wait_queue = new WaitQueue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue