summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-05-01 22:45:20 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-01 22:45:21 +0200
commite58dabade9d7e48817dfa0e6a718aa1780bc8fb3 (patch)
tree09473679028a2f8a4f3bfff63da9bf05ed8eac88 /recovery.cpp
parentMerge "minui: Fix breakage in graphics_adf." (diff)
parentadb_install: Stop passing RecoveryUI as a parameter. (diff)
downloadandroid_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar.gz
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar.bz2
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar.lz
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar.xz
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.tar.zst
android_bootable_recovery-e58dabade9d7e48817dfa0e6a718aa1780bc8fb3.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 3041d6cac..944c24086 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1155,7 +1155,7 @@ static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
{
bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
if (adb) {
- status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
+ status = apply_from_adb(&should_wipe_cache, TEMPORARY_INSTALL_FILE);
} else {
status = apply_from_sdcard(device, &should_wipe_cache);
}
@@ -1584,7 +1584,7 @@ int main(int argc, char **argv) {
if (!sideload_auto_reboot) {
ui->ShowText(true);
}
- status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
+ status = apply_from_adb(&should_wipe_cache, TEMPORARY_INSTALL_FILE);
if (status == INSTALL_SUCCESS && should_wipe_cache) {
if (!wipe_cache(false, device)) {
status = INSTALL_ERROR;