From dcf115778aa9ee31c044860228c78315e7a8626e Mon Sep 17 00:00:00 2001
From: B3n30 <bene_thomas@web.de>
Date: Mon, 27 Feb 2017 17:04:03 +0100
Subject: [PATCH] Fix log entry in timer::signal (#2600)

---
 src/core/hle/kernel/timer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index c42003e9d..90e4b1f00 100644
--- a/src/core/hle/kernel/timer.cpp
+++ b/src/core/hle/kernel/timer.cpp
@@ -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();