diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-03-10 18:04:14 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-03-10 18:04:14 +0100 |
commit | 45da9c9f296215a4d9ff77db0e6d48bda105ddee (patch) | |
tree | cdf816d309a228d7f3f47370b9f6776b514816d1 /src/send.c | |
parent | 519972c9c18a103a7689844150c75e939c642115 (diff) | |
download | fastd-45da9c9f296215a4d9ff77db0e6d48bda105ddee.tar fastd-45da9c9f296215a4d9ff77db0e6d48bda105ddee.zip |
Remove aligned data_t type again
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |