From cf43a955dfca8aca172ca57a9a30a2dd4331e7a6 Mon Sep 17 00:00:00 2001 From: Diego Perez Date: Fri, 2 Jul 2021 12:13:41 +0100 Subject: Fix FLAG_IS_ACCESSIBILITY_EVENT for non-linux builds Remove semicolon as there are more enum elements. Bug: 192643379 Test: build for non-linux host Change-Id: Id1f622180d7c567d68cb9997317d14868453395b --- include/input/Input.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/input/Input.h b/include/input/Input.h index f3369e8f71..6f2d716cf1 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -48,7 +48,7 @@ enum { AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = android::os::IInputConstants::INPUT_EVENT_FLAG_IS_ACCESSIBILITY_EVENT, // 0x800, #else - AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800; + AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800, #endif /* Signifies that the key is being predispatched */ AKEY_EVENT_FLAG_PREDISPATCH = 0x20000000, -- cgit v1.2.3-59-g8ed1b