summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-30 14:19:42 +0200
committerLioncash <mathew1800@gmail.com>2015-09-30 14:19:42 +0200
commita97d9613a77af2f4f4d213f8d72f336ebc516d33 (patch)
tree20225215b33b748d658b1881c417d01e3d67db88 /src/core/file_sys
parentMerge pull request #1172 from martinlindhe/fix-warnings (diff)
downloadyuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar.gz
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar.bz2
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar.lz
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar.xz
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.tar.zst
yuzu-a97d9613a77af2f4f4d213f8d72f336ebc516d33.zip
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/ivfc_archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp
index e16aa1491..441ca9b53 100644
--- a/src/core/file_sys/ivfc_archive.cpp
+++ b/src/core/file_sys/ivfc_archive.cpp
@@ -62,7 +62,7 @@ std::unique_ptr<DirectoryBackend> IVFCArchive::OpenDirectory(const Path& path) c
////////////////////////////////////////////////////////////////////////////////////////////////////
size_t IVFCFile::Read(const u64 offset, const size_t length, u8* buffer) const {
- LOG_TRACE(Service_FS, "called offset=%llu, length=%d", offset, length);
+ LOG_TRACE(Service_FS, "called offset=%llu, length=%zu", offset, length);
romfs_file->Seek(data_offset + offset, SEEK_SET);
size_t read_length = (size_t)std::min((u64)length, data_size - offset);