summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2020-09-01 19:05:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-09-01 19:05:35 +0000
commit022564e3e74bbb58e61be2700d5aba6634fec5fe (patch)
treeaaee8c73046f7ed6dfe0c8c9a1129808f4caa753
parent4447b46bb457d05b4685652b25d7c7e5103b2dd6 (diff)
parentfcc77f19bf84e1a41eb91ba5b03b64efde9fd462 (diff)
downloadnative-022564e3e74bbb58e61be2700d5aba6634fec5fe.tar.gz
Merge "libbinder: fix FATAL_IF_NOT_ONEWAY error"
-rw-r--r--libs/binder/IPCThreadState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index 157538e63f..9aaca65615 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -679,7 +679,7 @@ status_t IPCThreadState::transact(int32_t handle,
CallStack::logStack("non-oneway call", CallStack::getCurrent(10).get(),
ANDROID_LOG_ERROR);
} else /* FATAL_IF_NOT_ONEWAY */ {
- LOG_ALWAYS_FATAL("Process may not make oneway calls (code: %u).", code);
+ LOG_ALWAYS_FATAL("Process may not make non-oneway calls (code: %u).", code);
}
}