diff --git a/libraries/libstratosphere/source/fs/fsa/fs_user_filesystem.cpp b/libraries/libstratosphere/source/fs/fsa/fs_user_filesystem.cpp index 4022aea4f..3e6165987 100644 --- a/libraries/libstratosphere/source/fs/fsa/fs_user_filesystem.cpp +++ b/libraries/libstratosphere/source/fs/fsa/fs_user_filesystem.cpp @@ -170,7 +170,7 @@ namespace ams::fs { Result CommitImpl(const char *path) { impl::FileSystemAccessor *accessor; - R_TRY(impl::FindFileSystem(std::addressof(accessor), path)); + R_TRY(impl::Find(std::addressof(accessor), path)); return accessor->Commit(); }