Fix placement of alignment specifier

This commit is contained in:
Fraser Hutchison
2019-04-27 20:34:07 +02:00
committed by Frank Denis
parent cec56d867f
commit 261761a02c
@@ -56,7 +56,7 @@ size_t crypto_aead_aes256gcm_abytes(void);
SODIUM_EXPORT
size_t crypto_aead_aes256gcm_messagebytes_max(void);
typedef CRYPTO_ALIGN(16) struct crypto_aead_aes256gcm_state_ {
typedef struct CRYPTO_ALIGN(16) crypto_aead_aes256gcm_state_ {
unsigned char opaque[512];
} crypto_aead_aes256gcm_state;