fs_mgr: fix userdebug/user argument type mismatch

Test: build
Change-Id: I394bd14ef987d3b763869e05fdbf1ed32153ce59
This commit is contained in:
Tom Cherry 2018-10-29 17:08:23 -07:00
parent b7d9b6a995
commit 8dcae262d7
1 changed files with 2 additions and 2 deletions

View File

@ -57,11 +57,11 @@ using namespace android::fs_mgr;
#if ALLOW_ADBD_DISABLE_VERITY == 0 // If we are a user build, provide stubs
bool fs_mgr_overlayfs_mount_all(const fstab*) {
bool fs_mgr_overlayfs_mount_all(fstab*) {
return false;
}
std::vector<std::string> fs_mgr_overlayfs_required_devices(const fstab*) {
std::vector<std::string> fs_mgr_overlayfs_required_devices(fstab*) {
return {};
}