diff options
| author | bunnei <bunneidev@gmail.com> | 2015-04-14 19:13:33 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-04-14 19:13:33 -0400 |
| commit | 46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch) | |
| tree | 803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/core/hle/kernel | |
| parent | 6f1143885bcc02642b707b51355fe4b6cd5375c7 (diff) | |
| parent | 2e860bd59c914e75cda118a2e4249d20d0d3c394 (diff) | |
Merge pull request #697 from linkmauve/clang<3
Fix a few warnings as reported by clang 3.6
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp index 610e26a3c..1ec2a4b10 100644 --- a/src/core/hle/kernel/timer.cpp +++ b/src/core/hle/kernel/timer.cpp @@ -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; } |
