diff options
| author | FearlessTobi <thm.frey@gmail.com> | 2024-02-10 18:15:58 +0100 |
|---|---|---|
| committer | FearlessTobi <thm.frey@gmail.com> | 2024-02-19 19:20:40 +0100 |
| commit | d5e4617ab5c8b7e72e2155de886135766ce61c7a (patch) | |
| tree | 5d76b2101df594324bedb323bb5340e24ed7fa7c /src/core/file_sys/fs_path.h | |
| parent | c9ef2e26ca82cacc44998727d704f4b77ee88591 (diff) | |
fs: Add FileSystemAccessor classes
Diffstat (limited to 'src/core/file_sys/fs_path.h')
| -rw-r--r-- | src/core/file_sys/fs_path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/fs_path.h b/src/core/file_sys/fs_path.h index 56ba08a6a..1566e82b9 100644 --- a/src/core/file_sys/fs_path.h +++ b/src/core/file_sys/fs_path.h @@ -381,7 +381,7 @@ public: // Check that it's possible for us to remove a child auto* p = m_write_buffer.Get(); - s32 len = std::strlen(p); + s32 len = static_cast<s32>(std::strlen(p)); R_UNLESS(len != 1 || (p[0] != '/' && p[0] != '.'), ResultNotImplemented); // Handle a trailing separator |
