summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Liam2023-10-20 02:41:32 -0400
committerGravatar Liam2023-10-20 02:41:32 -0400
commit687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4 (patch)
tree72eddc7b8a1b014a1f53c4a9b2c85da4f1138c17 /src
parentkernel: make check fully constexpr for broken msvc constant folding (diff)
downloadyuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.gz
yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.xz
yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.zip
kernel: fix format string error
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc/svc_memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_memory.cpp b/src/core/hle/kernel/svc/svc_memory.cpp
index 372684094..97f1210de 100644
--- a/src/core/hle/kernel/svc/svc_memory.cpp
+++ b/src/core/hle/kernel/svc/svc_memory.cpp
@@ -76,7 +76,7 @@ Result MapUnmapMemorySanityChecks(const KPageTable& manager, u64 dst_addr, u64 s
76} // namespace 76} // namespace
77 77
78Result SetMemoryPermission(Core::System& system, u64 address, u64 size, MemoryPermission perm) { 78Result SetMemoryPermission(Core::System& system, u64 address, u64 size, MemoryPermission perm) {
79 LOG_DEBUG(Kernel_SVC, "called, address=0x{:016X}, size=0x{:X}, perm=0x{:08X", address, size, 79 LOG_DEBUG(Kernel_SVC, "called, address=0x{:016X}, size=0x{:X}, perm=0x{:08X}", address, size,
80 perm); 80 perm);
81 81
82 // Validate address / size. 82 // Validate address / size.