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

Commit aa8dc146 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am 41e9ee24: am feb539b6: am e1a475c0: Merge "Force alignment of data buffer...

am 41e9ee24: am feb539b6: am e1a475c0: Merge "Force alignment of data buffer used to process netlink messages"

* commit '41e9ee24':
  Force alignment of data buffer used to process netlink messages
parents 153c03ac 41e9ee24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
class NetlinkEvent;

class NetlinkListener : public SocketListener {
    char mBuffer[64 * 1024];
    char mBuffer[64 * 1024] __attribute__((aligned(4)));
    int mFormat;

public: