summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author David Brazdil <dbrazdil@google.com> 2018-11-30 16:33:28 +0000
committer David Brazdil <dbrazdil@google.com> 2018-11-30 16:34:01 +0000
commit32fd18324a06cbe20b8f5cafcb995f84e37e1be9 (patch)
treeb8ac3513f5d5c049aa7f050fd4a4f59bf6d5a36a
parent40c113e567c8fc516e83ccf19c4ce471d4cb5459 (diff)
hiddenapi: Fix typo
Test: n/a Change-Id: I40c2732310c9d8464f01c146debf359fb253ff95
-rw-r--r--tools/hiddenapi/hiddenapi.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hiddenapi/hiddenapi.cc b/tools/hiddenapi/hiddenapi.cc
index 0c6228ba93..3e38b97889 100644
--- a/tools/hiddenapi/hiddenapi.cc
+++ b/tools/hiddenapi/hiddenapi.cc
@@ -953,7 +953,7 @@ class HiddenApi final {
auto it = api_list.find(boot_member.GetApiEntry());
bool api_list_found = (it != api_list.end());
// TODO: Fix ART buildbots and turn this into a CHECK.
- if (force_assign_all && !api_list_found) {
+ if (force_assign_all_ && !api_list_found) {
LOG(WARNING) << "Could not find hiddenapi flags for dex entry: "
<< boot_member.GetApiEntry();
}