diff options
| author | Liam <byteslice@airmail.cc> | 2023-07-29 20:43:34 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-08-08 11:09:37 -0400 |
| commit | 37b278a9a85fb934fa78ce4abf12a2c9df7d7112 (patch) | |
| tree | 7f772ed7cdd56a4b75df1b3873a0a91996567892 /src/core/hle/service/filesystem/filesystem.cpp | |
| parent | 83eee1d2266a1de374be0a8b2c0f2827f5e25bcf (diff) | |
general: fix incorrect conversions
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.cpp')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index d9b569789..f59fa7fb1 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -57,7 +57,7 @@ Result VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 size return FileSys::ERROR_PATH_NOT_FOUND; } - FileSys::EntryType entry_type; + FileSys::EntryType entry_type{}; if (GetEntryType(&entry_type, path) == ResultSuccess) { return FileSys::ERROR_PATH_ALREADY_EXISTS; } |
