fs: Fix what appears to be a typo (filename_size / file_size)
This commit is contained in:
parent
41ec40e9aa
commit
040b7386a9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue