diff options
author | Elliott Hughes <enh@google.com> | 2016-09-26 21:32:48 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-09-26 21:32:48 +0200 |
commit | cc02f9652f7994c835c7073d13b30f60ff1134af (patch) | |
tree | 034b34abded47d933f5e4f84b8f92936fb74bd47 /wear_ui.cpp | |
parent | Merge "Check corruption when reading uncrypt_status file" (diff) | |
parent | Switch to <android-base/properties.h>. (diff) | |
download | android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar.gz android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar.bz2 android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar.lz android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar.xz android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.tar.zst android_bootable_recovery-cc02f9652f7994c835c7073d13b30f60ff1134af.zip |
Diffstat (limited to 'wear_ui.cpp')
-rw-r--r-- | wear_ui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wear_ui.cpp b/wear_ui.cpp index e078134ce..17889076a 100644 --- a/wear_ui.cpp +++ b/wear_ui.cpp @@ -30,7 +30,7 @@ #include "common.h" #include "device.h" #include "wear_ui.h" -#include "cutils/properties.h" +#include "android-base/properties.h" #include "android-base/strings.h" #include "android-base/stringprintf.h" @@ -160,8 +160,8 @@ void WearRecoveryUI::draw_screen_locked() int y = outer_height; int x = outer_width; if (show_menu) { - char recovery_fingerprint[PROPERTY_VALUE_MAX]; - property_get("ro.bootimage.build.fingerprint", recovery_fingerprint, ""); + std::string recovery_fingerprint = + android::base::GetProperty("ro.bootimage.build.fingerprint", ""); SetColor(HEADER); DrawTextLine(x + 4, &y, "Android Recovery", true); for (auto& chunk: android::base::Split(recovery_fingerprint, ":")) { |