diff options
author | Yurii Zubrytskyi <zyy@google.com> | 2020-04-22 13:59:06 -0700 |
---|---|---|
committer | Yurii Zubrytskyi <zyy@google.com> | 2020-04-22 14:00:55 -0700 |
commit | efebb45ad7fc25b477fea1416001c3193cefbec4 (patch) | |
tree | e5ef33d655c87733025d0a93f829db1e6051b527 /services/incremental/ServiceWrappers.cpp | |
parent | f315786c676da21c3a1a5ce3e8e0ee858fe134fe (diff) |
[incfs] Use the new IncFs_MakeDirs() function
This gets rid of annoying warnings in logcat about not being
able to create a directory and then directory already existing
Bug: 153704006
Test: atest IncrementalServiceTest
Test: adb install megacity.apk
Change-Id: Ib718960287f93cb383c06c9b9e3d0abf1ec42916
Diffstat (limited to 'services/incremental/ServiceWrappers.cpp')
-rw-r--r-- | services/incremental/ServiceWrappers.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/services/incremental/ServiceWrappers.cpp b/services/incremental/ServiceWrappers.cpp index 0b044c260160..32aa849c03b9 100644 --- a/services/incremental/ServiceWrappers.cpp +++ b/services/incremental/ServiceWrappers.cpp @@ -135,6 +135,9 @@ public: ErrorCode makeDir(const Control& control, std::string_view path, int mode) const final { return incfs::makeDir(control, path, mode); } + ErrorCode makeDirs(const Control& control, std::string_view path, int mode) const final { + return incfs::makeDirs(control, path, mode); + } incfs::RawMetadata getMetadata(const Control& control, FileId fileid) const final { return incfs::getMetadata(control, fileid); } |