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

This commit is contained in:
Elliott Hughes 2013-12-14 00:13:32 +00:00 committed by Gerrit Code Review
commit e1a475c0b4
1 changed files with 1 additions and 1 deletions

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: