summaryrefslogtreecommitdiffstats
path: root/src/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index feeb961..ba0bc28 100644
--- a/src/send.c
+++ b/src/send.c
@@ -78,7 +78,7 @@ static void send_type(fastd_context_t *ctx, const fastd_socket_t *sock, const fa
exit_bug(ctx, "send: sock == NULL");
struct msghdr msg = {};
- data_t cbuf[1024] = {};
+ uint8_t cbuf[1024] __attribute__((aligned(8))) = {};
fastd_peer_address_t remote_addr6;
switch (remote_addr->sa.sa_family) {