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

Commit 1ed06aac authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "libbinder: use flexible array member instead of 0 sized array"

parents 3c400807 139913a0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -115,12 +115,12 @@ struct RpcWireTransaction {

    uint32_t reserved[4];

    uint8_t data[0];
    uint8_t data[];
};

struct RpcWireReply {
    int32_t status; // transact return
    uint8_t data[0];
    uint8_t data[];
};

#pragma clang diagnostic pop