summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-05-01 20:31:28 +0200
committerTao Bao <tbao@google.com>2017-05-01 20:47:43 +0200
commit0150d013eb096a85e541294ee9df320ef4227df0 (patch)
tree09473679028a2f8a4f3bfff63da9bf05ed8eac88 /recovery.cpp
parentMerge "minui: Fix breakage in graphics_adf." (diff)
downloadandroid_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar.gz
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar.bz2
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar.lz
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar.xz
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.tar.zst
android_bootable_recovery-0150d013eb096a85e541294ee9df320ef4227df0.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;