summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-07 00:09:24 -0300
committerGravatar Yuri Kunde Schlesner2015-05-07 15:45:22 -0300
commitc956e8a6869d0ee1edd68a6ab880efa6bf1fbe70 (patch)
tree2ff62c2c3f0a32f1d6cccd9b26b5f4a68bce6395 /src
parentCommon: Remove common.h (diff)
downloadyuzu-c956e8a6869d0ee1edd68a6ab880efa6bf1fbe70.tar.gz
yuzu-c956e8a6869d0ee1edd68a6ab880efa6bf1fbe70.tar.xz
yuzu-c956e8a6869d0ee1edd68a6ab880efa6bf1fbe70.zip
Fix printf format warning
Diffstat (limited to '')
-rw-r--r--src/core/hle/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 1372aa096..393cfbe79 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -312,7 +312,7 @@ static ResultCode GetResourceLimit(Handle* resource_limit, Handle process) {
312/// Get resource limit current values 312/// Get resource limit current values
313static ResultCode GetResourceLimitCurrentValues(s64* values, Handle resource_limit, void* names, 313static ResultCode GetResourceLimitCurrentValues(s64* values, Handle resource_limit, void* names,
314 s32 name_count) { 314 s32 name_count) {
315 LOG_ERROR(Kernel_SVC, "(UNIMPLEMENTED) called resource_limit=%08X, names=%s, name_count=%d", 315 LOG_ERROR(Kernel_SVC, "(UNIMPLEMENTED) called resource_limit=%08X, names=%p, name_count=%d",
316 resource_limit, names, name_count); 316 resource_limit, names, name_count);
317 Memory::Write32(Core::g_app_core->GetReg(0), 0); // Normmatt: Set used memory to 0 for now 317 Memory::Write32(Core::g_app_core->GetReg(0), 0); // Normmatt: Set used memory to 0 for now
318 return RESULT_SUCCESS; 318 return RESULT_SUCCESS;