summaryrefslogtreecommitdiffstats
path: root/ui.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-09-24 00:30:55 +0200
committerElliott Hughes <enh@google.com>2016-09-24 03:16:35 +0200
commit91e3aee9bdc1a503affdd925dd4da352a198abca (patch)
tree2fee5fc861058ac011970af564aea79ff8fa97de /ui.cpp
parentRevert "DO NOT MERGE Fail gracefully when we fail to fork the update binary am: de1b53d067" (diff)
downloadandroid_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar.gz
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar.bz2
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar.lz
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar.xz
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.tar.zst
android_bootable_recovery-91e3aee9bdc1a503affdd925dd4da352a198abca.zip
Diffstat (limited to '')
-rw-r--r--ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.cpp b/ui.cpp
index 2efb759db..78b6e4f1b 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -28,7 +28,7 @@
#include <time.h>
#include <unistd.h>
-#include <cutils/properties.h>
+#include <android-base/properties.h>
#include <cutils/android_reboot.h>
#include "common.h"
@@ -175,7 +175,7 @@ void RecoveryUI::ProcessKey(int key_code, int updown) {
case RecoveryUI::REBOOT:
if (reboot_enabled) {
- property_set(ANDROID_RB_PROPERTY, "reboot,");
+ android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
while (true) { pause(); }
}
break;