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

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

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

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

* commit 'aa8dc146':
  Force alignment of data buffer used to process netlink messages
parents cec7e7e3 aa8dc146
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: