summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Spilsbury <smspillaz@gmail.com>2016-03-27 12:03:44 +0800
committerSam Spilsbury <smspillaz@gmail.com>2016-04-23 11:54:02 +0800
commit040b7386a92fcadc5c4b08643299567de876c4d6 (patch)
tree1f4b7520029779d41306b6939b8be23c29753588 /src
parent41ec40e9aa2e8445ac73f90f9784c4130b977dae (diff)
fs: Fix what appears to be a typo (filename_size / file_size)
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/fs/fs_user.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp
index 3ec7ceb30..7df7da5a4 100644
--- a/src/core/hle/service/fs/fs_user.cpp
+++ b/src/core/hle/service/fs/fs_user.cpp
@@ -250,7 +250,7 @@ static void CreateFile(Service::Interface* self) {
FileSys::Path file_path(filename_type, filename_size, filename_ptr);
- LOG_DEBUG(Service_FS, "type=%d size=%llu data=%s", filename_type, filename_size, file_path.DebugStr().c_str());
+ LOG_DEBUG(Service_FS, "type=%d size=%llu data=%s", filename_type, file_size, file_path.DebugStr().c_str());
cmd_buff[1] = CreateFileInArchive(archive_handle, file_path, file_size).raw;
}