diff options
| author | 2019-08-06 01:28:19 +0000 | |
|---|---|---|
| committer | 2019-08-06 01:28:19 +0000 | |
| commit | 7a129feb164e5bdf912032ba8dc452bac88eaa6d (patch) | |
| tree | 8b9e5f83d3d01363cfdaa568fe4dbd111edf6183 | |
| parent | ac7caa95250cf1a6a72b15b140b5df947600282c (diff) | |
| parent | 732de21e5df2de362df8c62d7daba6c925cb4d3c (diff) | |
Merge "libbinder: Fix bad stability set log."
| -rw-r--r-- | libs/binder/Stability.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Stability.cpp b/libs/binder/Stability.cpp index f18bdca1fd..0bcce5bf94 100644 --- a/libs/binder/Stability.cpp +++ b/libs/binder/Stability.cpp @@ -58,7 +58,7 @@ status_t Stability::set(IBinder* binder, int32_t stability, bool log) { if (currentStability != Level::UNDECLARED && currentStability != stability) { if (log) { ALOGE("Interface being set with %s but it is already marked as %s.", - stabilityString(stability).c_str(), stabilityString(stability).c_str()); + stabilityString(stability).c_str(), stabilityString(currentStability).c_str()); } return BAD_TYPE; } |