summaryrefslogtreecommitdiff
path: root/src/core/hle/service/filesystem
diff options
context:
space:
mode:
authorGravatar N00byKing2018-03-19 17:07:08 +0100
committerGravatar N00byKing2018-03-19 17:07:08 +0100
commitef875d6a356fef22d52ec2cdf2a326297740ff66 (patch)
tree8565762859d7be0329fb5991819b8381c690527d /src/core/hle/service/filesystem
parentMerge pull request #251 from Subv/tic_tsc (diff)
downloadyuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip
Clean Warnings (?)
Diffstat (limited to 'src/core/hle/service/filesystem')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 97b3fa290..470b6350e 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -35,7 +35,7 @@ private:
35 const s64 offset = rp.Pop<s64>(); 35 const s64 offset = rp.Pop<s64>();
36 const s64 length = rp.Pop<s64>(); 36 const s64 length = rp.Pop<s64>();
37 37
38 LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); 38 LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length);
39 39
40 // Error checking 40 // Error checking
41 if (length < 0) { 41 if (length < 0) {
@@ -86,7 +86,7 @@ private:
86 const s64 offset = rp.Pop<s64>(); 86 const s64 offset = rp.Pop<s64>();
87 const s64 length = rp.Pop<s64>(); 87 const s64 length = rp.Pop<s64>();
88 88
89 LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); 89 LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length);
90 90
91 // Error checking 91 // Error checking
92 if (length < 0) { 92 if (length < 0) {
@@ -123,7 +123,7 @@ private:
123 const s64 offset = rp.Pop<s64>(); 123 const s64 offset = rp.Pop<s64>();
124 const s64 length = rp.Pop<s64>(); 124 const s64 length = rp.Pop<s64>();
125 125
126 LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); 126 LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length);
127 127
128 // Error checking 128 // Error checking
129 if (length < 0) { 129 if (length < 0) {