Skip to content
Snippets Groups Projects
Commit 0d69b2f7 authored by Emmanuel Gil Peyrot's avatar Emmanuel Gil Peyrot
Browse files

Kernel: Use the correct format string for u64 hex.

parent bdcf28e3
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ static void TimerCallback(u64 timer_handle, int cycles_late) {
SharedPtr<Timer> timer = timer_callback_handle_table.Get<Timer>(static_cast<Handle>(timer_handle));
if (timer == nullptr) {
LOG_CRITICAL(Kernel, "Callback fired for invalid timer %08X", timer_handle);
LOG_CRITICAL(Kernel, "Callback fired for invalid timer %08lX", timer_handle);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment