diff options
author | Eric Biggers <ebiggers@google.com> | 2022-03-17 22:59:32 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2022-03-17 22:59:32 +0100 |
commit | 37a4f4d243739c42b61a319383a2208e1810507e (patch) | |
tree | 2a0820b1c0944841852af90638b80e1b7cc16ee6 /install/adb_install.cpp | |
parent | Merge "Merge Android 12L" (diff) | |
parent | Remove support for converting from FDE to FBE (diff) | |
download | android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar.gz android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar.bz2 android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar.lz android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar.xz android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.tar.zst android_bootable_recovery-37a4f4d243739c42b61a319383a2208e1810507e.zip |
Diffstat (limited to 'install/adb_install.cpp')
-rw-r--r-- | install/adb_install.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/adb_install.cpp b/install/adb_install.cpp index 5cba7b67c..b12e52944 100644 --- a/install/adb_install.cpp +++ b/install/adb_install.cpp @@ -369,7 +369,7 @@ InstallResult ApplyFromAdb(Device* device, bool rescue_mode, Device::BuiltinActi "to the device with \"adb sideload <filename>\"...\n"); } else { command_map.emplace(MinadbdCommand::kWipeData, [&device]() { - bool result = WipeData(device, false); + bool result = WipeData(device); return std::make_pair(result, true); }); command_map.emplace(MinadbdCommand::kNoOp, []() { return std::make_pair(true, true); }); |