diff options
| author | 2019-10-02 10:58:46 +0900 | |
|---|---|---|
| committer | 2019-10-02 10:58:46 +0900 | |
| commit | 372fbe4ee9b2bf80d1b7c4daeed47be6e2eb3a9c (patch) | |
| tree | 5885f0488bb0a39e741453b75122e150ac2103c1 | |
| parent | 84d78e1dee0aa772bc699f09e0bcb324d47be337 (diff) | |
InputDispatcher: Fix typo
Test: Build
Change-Id: I500c732808cb2db6cd0669ee1eebbc9a1f150876
| -rw-r--r-- | services/inputflinger/dispatcher/InputDispatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/inputflinger/dispatcher/InputDispatcher.cpp b/services/inputflinger/dispatcher/InputDispatcher.cpp index 039462e23b..b8970bf948 100644 --- a/services/inputflinger/dispatcher/InputDispatcher.cpp +++ b/services/inputflinger/dispatcher/InputDispatcher.cpp @@ -2768,7 +2768,7 @@ void InputDispatcher::notifyMotion(const NotifyMotionArgs* args) { "yCursorPosition=%f, downTime=%" PRId64, args->eventTime, args->deviceId, args->source, args->displayId, args->policyFlags, args->action, args->actionButton, args->flags, args->metaState, args->buttonState, - args->edgeFlags, args->xPrecision, args->yPrecision, arg->xCursorPosition, + args->edgeFlags, args->xPrecision, args->yPrecision, args->xCursorPosition, args->yCursorPosition, args->downTime); for (uint32_t i = 0; i < args->pointerCount; i++) { ALOGD(" Pointer %d: id=%d, toolType=%d, " |