summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2022-12-09 01:16:42 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-12-09 01:16:42 +0000
commit6f1de5c160ed29a54b75454e6099369a5bdef89c (patch)
tree01d6c888ba6eaab01a8c627e4ae8c7e5c3c6d75c
parentc3b4ed369e30c1b6da415894c80a624f6d440dcc (diff)
parentca71b455ff39978383f0b693378b2b8929540e82 (diff)
Merge "Fixed typo for isDeclared warning message"
-rw-r--r--libs/binder/IServiceManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/IServiceManager.cpp b/libs/binder/IServiceManager.cpp
index a0c43349a7..2408307459 100644
--- a/libs/binder/IServiceManager.cpp
+++ b/libs/binder/IServiceManager.cpp
@@ -444,7 +444,7 @@ bool ServiceManagerShim::isDeclared(const String16& name) {
bool declared;
if (Status status = mTheRealServiceManager->isDeclared(String8(name).c_str(), &declared);
!status.isOk()) {
- ALOGW("Failed to get isDeclard for %s: %s", String8(name).c_str(),
+ ALOGW("Failed to get isDeclared for %s: %s", String8(name).c_str(),
status.toString8().c_str());
return false;
}