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

Commit cf43a955 authored by Diego Perez's avatar Diego Perez
Browse files

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
parent 80e30bd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,