diff options
| author | 2022-12-09 01:16:42 +0000 | |
|---|---|---|
| committer | 2022-12-09 01:16:42 +0000 | |
| commit | 6f1de5c160ed29a54b75454e6099369a5bdef89c (patch) | |
| tree | 01d6c888ba6eaab01a8c627e4ae8c7e5c3c6d75c | |
| parent | c3b4ed369e30c1b6da415894c80a624f6d440dcc (diff) | |
| parent | ca71b455ff39978383f0b693378b2b8929540e82 (diff) | |
Merge "Fixed typo for isDeclared warning message"
| -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; } |