Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcc77f19 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: fix FATAL_IF_NOT_ONEWAY error

Missing negation. 'oneway' -> 'non-oneway'

Bug: N/A
Test: N/A
Change-Id: Ic96e352506462d6354bd137eb22dce72d1279cdd
parent 0fd8d797
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
            }
        }