diff options
author | 2022-12-08 01:38:29 +0000 | |
---|---|---|
committer | 2022-12-08 01:38:29 +0000 | |
commit | ca71b455ff39978383f0b693378b2b8929540e82 (patch) | |
tree | 109fc0adad886180b910e66a8a902c49faba8c77 /libs/binder/IServiceManager.cpp | |
parent | a87bb3c9450e35f8a37585afe17e511b091d3241 (diff) |
Fixed typo for isDeclared warning message
Bug: 261730215
Test: build
Change-Id: I60584608d44443adcbc40e51193b43cb7e6cd2ee
Diffstat (limited to 'libs/binder/IServiceManager.cpp')
-rw-r--r-- | libs/binder/IServiceManager.cpp | 2 |
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; } |