diff options
author | N00byKing <N00byKing@hotmail.de> | 2018-03-19 17:07:08 +0100 |
---|---|---|
committer | N00byKing <N00byKing@hotmail.de> | 2018-03-19 17:07:08 +0100 |
commit | ef875d6a356fef22d52ec2cdf2a326297740ff66 (patch) | |
tree | 8565762859d7be0329fb5991819b8381c690527d /src/core/hle/service/filesystem | |
parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
download | yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.bz2 yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.lz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.zst yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip |
Diffstat (limited to 'src/core/hle/service/filesystem')
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 6 |
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: const s64 offset = rp.Pop<s64>(); const s64 length = rp.Pop<s64>(); - LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); + LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length); // Error checking if (length < 0) { @@ -86,7 +86,7 @@ private: const s64 offset = rp.Pop<s64>(); const s64 length = rp.Pop<s64>(); - LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); + LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length); // Error checking if (length < 0) { @@ -123,7 +123,7 @@ private: const s64 offset = rp.Pop<s64>(); const s64 length = rp.Pop<s64>(); - LOG_DEBUG(Service_FS, "called, offset=0x%llx, length=0x%llx", offset, length); + LOG_DEBUG(Service_FS, "called, offset=0x%l, length=0x%l", offset, length); // Error checking if (length < 0) { |