summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-03-28 21:28:30 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-28 21:28:30 +0000
commitc2d55d916ac53d2f1ab62c0e5b80a060508ea0e6 (patch)
treec0aeb4f8f8df94291f621879e12cc14eac42312a
parentb95bd3bfe6e09af2fbab870403a2c5c964c9559f (diff)
parent43654e701c8ab7ef0fa64d31375e053e3012fab7 (diff)
downloadnative-c2d55d916ac53d2f1ab62c0e5b80a060508ea0e6.tar.gz
Merge "Change the type of displayId to int32_t" into main
-rw-r--r--services/inputflinger/dispatcher/InputDispatcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/inputflinger/dispatcher/InputDispatcher.cpp b/services/inputflinger/dispatcher/InputDispatcher.cpp
index 9a3fe436b9..67e48a266d 100644
--- a/services/inputflinger/dispatcher/InputDispatcher.cpp
+++ b/services/inputflinger/dispatcher/InputDispatcher.cpp
@@ -4680,7 +4680,7 @@ InputEventInjectionResult InputDispatcher::injectInputEvent(const InputEvent* ev
const bool isPointerEvent =
isFromSource(event->getSource(), AINPUT_SOURCE_CLASS_POINTER);
// If a pointer event has no displayId specified, inject it to the default display.
- const uint32_t displayId = isPointerEvent && (event->getDisplayId() == ADISPLAY_ID_NONE)
+ const int32_t displayId = isPointerEvent && (event->getDisplayId() == ADISPLAY_ID_NONE)
? ADISPLAY_ID_DEFAULT
: event->getDisplayId();
int32_t flags = motionEvent.getFlags();