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

Commit fae03b95 authored by Nick Desaulniers's avatar Nick Desaulniers Committed by android-build-merger
Browse files

Merge "[inputflinger] fix -Wreorder-init-list" am: c932e447 am: eb013d0f am: 9d9321bf

am: ffbe5b86

Change-Id: Idb1dc955b8c54f39cb8fc27b6ffc454628b1c25e
parents 37669aa4 ffbe5b86
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -127,10 +127,10 @@ input_device_identifier_t* InputDriver::createDeviceIdentifier(
            input_bus_t bus, const char* uniqueId) {
    auto identifier = new ::input_device_identifier {
        .name = name,
        .productId = productId,
        .vendorId = vendorId,
        .bus = bus,
        .uniqueId = uniqueId,
        .bus = bus,
        .vendorId = vendorId,
        .productId = productId,
    };
    // TODO: store this identifier somewhere
    return identifier;