diff options
author | Chris Phoenix <cphoenix@google.com> | 2017-01-23 21:27:49 +0100 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2017-01-23 21:27:50 +0100 |
commit | 4410c0348ced5776e5203310c191f8ef3680d9a0 (patch) | |
tree | baa54fc4cda2a21f2c5e29ca811edb982e7aef22 | |
parent | Merge "imgpatch: Compile with ZLIB_CONST defined." am: e78ca37656 am: ca261d3b48 am: 6a82bc228a (diff) | |
parent | bootctrl HAL uses "default" service name (diff) | |
download | android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar.gz android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar.bz2 android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar.lz android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar.xz android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.tar.zst android_bootable_recovery-4410c0348ced5776e5203310c191f8ef3680d9a0.zip |
-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; |