1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-29 23:46:31 -05:00

Fix log entry in timer::signal (#2600)

This commit is contained in:
B3n30
2017-02-27 17:04:03 +01:00
committed by Sebastian Valle
parent 0cb52ee74a
commit dcf115778a

View File

@@ -78,7 +78,7 @@ void Timer::WakeupAllWaitingThreads() {
}
void Timer::Signal(int cycles_late) {
LOG_TRACE(Kernel, "Timer %08" PRIx64 " fired", timer_handle);
LOG_TRACE(Kernel, "Timer %u fired", GetObjectId());
// Resume all waiting threads
WakeupAllWaitingThreads();