summaryrefslogtreecommitdiffstats
path: root/ui.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-09-26 21:42:16 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-09-26 21:42:16 +0200
commitd5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5 (patch)
tree4f7aa2ba4ccf0fc29fb709346392e0b9aa33442d /ui.cpp
parentMerge "Check corruption when reading uncrypt_status file" am: 3cf815a6a9 (diff)
parentMerge "Switch to <android-base/properties.h>." (diff)
downloadandroid_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar.gz
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar.bz2
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar.lz
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar.xz
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.tar.zst
android_bootable_recovery-d5c7d6bffe9d03c79c2504f7cbb5091ac377a6c5.zip
Diffstat (limited to 'ui.cpp')
-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;