summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2020-09-01 01:16:11 +0000
committerSteven Moreland <smoreland@google.com>2020-09-01 01:16:49 +0000
commitfcc77f19bf84e1a41eb91ba5b03b64efde9fd462 (patch)
tree5ec5e76118f2dc1d9dbd36a4c9158b0e45d34bb8
parent0fd8d7970b1bc0fa318a7db65f2e10f097f593de (diff)
downloadnative-fcc77f19bf84e1a41eb91ba5b03b64efde9fd462.tar.gz
libbinder: fix FATAL_IF_NOT_ONEWAY error
Missing negation. 'oneway' -> 'non-oneway' Bug: N/A Test: N/A Change-Id: Ic96e352506462d6354bd137eb22dce72d1279cdd
-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);
}
}