diff options
| author | 2018-03-19 17:43:04 +0100 | |
|---|---|---|
| committer | 2018-03-19 17:43:04 +0100 | |
| commit | d16e08454dbf47bcf8524fdc3ea97c3f8bd32305 (patch) | |
| tree | c5fadbe45987a0791e47532e628deda8920f4630 /src | |
| parent | More Warning cleanups (diff) | |
| download | yuzu-d16e08454dbf47bcf8524fdc3ea97c3f8bd32305.tar.gz yuzu-d16e08454dbf47bcf8524fdc3ea97c3f8bd32305.tar.xz yuzu-d16e08454dbf47bcf8524fdc3ea97c3f8bd32305.zip | |
oops
Diffstat (limited to 'src')
| -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 470b6350e..e5ce41671 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%l, length=0x%l", offset, length); | 38 | LOG_DEBUG(Service_FS, "called, offset=0x%ld, length=0x%ld", 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%l, length=0x%l", offset, length); | 89 | LOG_DEBUG(Service_FS, "called, offset=0x%ld, length=0x%ld", 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%l, length=0x%l", offset, length); | 126 | LOG_DEBUG(Service_FS, "called, offset=0x%ld, length=0x%ld", offset, length); |
| 127 | 127 | ||
| 128 | // Error checking | 128 | // Error checking |
| 129 | if (length < 0) { | 129 | if (length < 0) { |