diff options
author | Chris Phoenix <cphoenix@google.com> | 2017-01-23 21:58:20 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-01-23 21:58:20 +0100 |
commit | 58eace4a96784ee07bc9e64ba3c9072ff49449c1 (patch) | |
tree | 890f3faeca9628d5427002c17df8ef7de7d333a3 | |
parent | Merge "Restore the max width for recovery background texts" am: c1df344381 (diff) | |
parent | Merge "bootctrl HAL uses "default" service name" (diff) | |
download | android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar.gz android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar.bz2 android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar.lz android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar.xz android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.tar.zst android_bootable_recovery-58eace4a96784ee07bc9e64ba3c9072ff49449c1.zip |
Diffstat (limited to '')
-rw-r--r-- | update_verifier/update_verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp index e97a3adba..7087671e0 100644 --- a/update_verifier/update_verifier.cpp +++ b/update_verifier/update_verifier.cpp @@ -147,7 +147,7 @@ int main(int argc, char** argv) { LOG(INFO) << "Started with arg " << i << ": " << argv[i]; } - sp<IBootControl> module = IBootControl::getService("bootctrl"); + sp<IBootControl> module = IBootControl::getService(); if (module == nullptr) { LOG(ERROR) << "Error getting bootctrl module."; return -1; |