diff options
author | Diego Perez <diegoperez@google.com> | 2021-07-02 12:13:41 +0100 |
---|---|---|
committer | Diego Perez <diegoperez@google.com> | 2021-07-02 11:22:35 +0000 |
commit | cf43a955dfca8aca172ca57a9a30a2dd4331e7a6 (patch) | |
tree | c9a5888688e08221a4bfbde01689981edafde611 /include | |
parent | 80e30bd8f1b6816e1d642640da61e0ffbc2d3219 (diff) |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/input/Input.h | 2 |
1 files changed, 1 insertions, 1 deletions
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, |