fs: fix bug in Commit

This commit is contained in:
Michael Scire 2020-03-04 21:27:28 -08:00
parent 524582fd7d
commit d2f8791c8f

View file

@ -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();
}