Align blk.data to 16 bytes

This commit is contained in:
angt
2015-11-27 08:07:53 +01:00
parent e20be0ad97
commit 6ed736327a
2 changed files with 5 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ struct fdbuf {
struct blk {
size_t size;
uint8_t data[GT_MTU_MAX];
uint8_t data[GT_MTU_MAX] _align_(16);
};
struct crypto_ctx {