summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-30 08:19:42 -0400
committerLioncash <mathew1800@gmail.com>2015-09-30 08:19:42 -0400
commita97d9613a77af2f4f4d213f8d72f336ebc516d33 (patch)
tree20225215b33b748d658b1881c417d01e3d67db88 /src
parenta67df5ad94b206c2f2377ba90173f5f1fbd9d74e (diff)
ivfc_archive: Fix a printf specifier
Diffstat (limited to 'src')
-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);