summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-01 05:30:00 +0200
committerbunnei <bunneidev@gmail.com>2018-04-01 05:30:00 +0200
commitf4ba523992a61bbdec6c849d462389b938beff87 (patch)
tree2c4b39aed152446327df95f581d8ff1e819ffd15 /src/core/hle/service/filesystem/fsp_srv.cpp
parenthid: Stub out GetSupportedNpadStyleSet. (diff)
downloadyuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar.gz
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar.bz2
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar.lz
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar.xz
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.tar.zst
yuzu-f4ba523992a61bbdec6c849d462389b938beff87.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 92b3d07b4..89fa70ae6 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -155,7 +155,7 @@ private:
IPC::RequestParser rp{ctx};
const u64 size = rp.Pop<u64>();
backend->SetSize(size);
- LOG_DEBUG(Service_FS, "called, size=0x%ld, length=0x%ld", size);
+ LOG_DEBUG(Service_FS, "called, size=%" PRIu64, size);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
@@ -163,7 +163,7 @@ private:
void GetSize(Kernel::HLERequestContext& ctx) {
const u64 size = backend->GetSize();
- LOG_DEBUG(Service_FS, "called, size=0x%ld", size);
+ LOG_DEBUG(Service_FS, "called, size=%" PRIu64, size);
IPC::ResponseBuilder rb{ctx, 4};
rb.Push(RESULT_SUCCESS);