From d2f8791c8f8c74a5fc4e0f17855df884e942de3a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 4 Mar 2020 21:27:28 -0800 Subject: [PATCH] fs: fix bug in Commit --- libraries/libstratosphere/source/fs/fsa/fs_user_filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }