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

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

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

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