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

Commit 6fe47108 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

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

Merge "libbinder: use flexible array member instead of 0 sized array" am: 1ed06aac am: 66f47f35 am: ac2b7ce7 am: 9e5ce9fe am: 23f412db

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1803336

Change-Id: Ib09c919f7a9f2579ee00b5299e8b6aa706b2e182
parents 13800c2f 23f412db
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