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

* commit 'e1a475c0b4b73ec72fae12ea310b038d87a71b0e':
  Force alignment of data buffer used to process netlink messages
This commit is contained in:
Elliott Hughes 2013-12-13 16:17:24 -08:00 committed by Android Git Automerger
commit feb539b6e3

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: