summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-02-14 06:33:15 +0100
committerLioncash <mathew1800@gmail.com>2018-02-14 07:50:14 +0100
commitc1146d2a5f9922a139f17336ba75be0100e5a485 (patch)
tree3c283b764da36ac006cfda9b8538e5667e4264ec /src/core/hle/kernel/thread.cpp
parentvm_manager: Silence formatting specifier warnings (diff)
downloadyuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar.gz
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar.bz2
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar.lz
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar.xz
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.tar.zst
yuzu-c1146d2a5f9922a139f17336ba75be0100e5a485.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 111c496b9..1a33cc6cb 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <algorithm>
+#include <cinttypes>
#include <list>
#include <vector>
#include "common/assert.h"
@@ -379,7 +380,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point,
SharedPtr<Process> owner_process) {
// Check if priority is in ranged. Lowest priority -> highest priority id.
if (priority > THREADPRIO_LOWEST) {
- LOG_ERROR(Kernel_SVC, "Invalid thread priority: %d", priority);
+ LOG_ERROR(Kernel_SVC, "Invalid thread priority: %u", priority);
return ERR_OUT_OF_RANGE;
}
@@ -391,7 +392,7 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point,
// TODO(yuriks): Other checks, returning 0xD9001BEA
if (!Memory::IsValidVirtualAddress(*owner_process, entry_point)) {
- LOG_ERROR(Kernel_SVC, "(name=%s): invalid entry %08x", name.c_str(), entry_point);
+ LOG_ERROR(Kernel_SVC, "(name=%s): invalid entry %016" PRIx64, name.c_str(), entry_point);
// TODO (bunnei): Find the correct error code to use here
return ResultCode(-1);
}