1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 20:15:07 +00:00

Kernel: Make TimeManagement::boot_time() static

This commit is contained in:
Andreas Kling 2022-06-14 14:00:09 +02:00
parent a786b374b6
commit adaaea4c9a
2 changed files with 2 additions and 2 deletions

View file

@ -175,7 +175,7 @@ time_t TimeManagement::ticks_per_second() const
return m_time_keeper_timer->ticks_per_second();
}
time_t TimeManagement::boot_time() const
time_t TimeManagement::boot_time()
{
return RTC::boot_time();
}