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

* commit 'feb539b6e3d81a7f0ab86b6b48056a531c4cb4ed':
  Force alignment of data buffer used to process netlink messages
This commit is contained in:
Elliott Hughes 2013-12-14 00:20:11 +00:00 committed by Android Git Automerger
commit 41e9ee2477

View file

@ -21,7 +21,7 @@
class NetlinkEvent;
class NetlinkListener : public SocketListener {
char mBuffer[64 * 1024];
char mBuffer[64 * 1024] __attribute__((aligned(4)));
int mFormat;
public: