Merge "fs_mgr: fix userdebug/user argument type mismatch"

This commit is contained in:
Tom Cherry 2018-10-30 00:14:56 +00:00 committed by Gerrit Code Review
commit 1d0ee36de7
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 {};
}