mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
Fix placement of alignment specifier
This commit is contained in:
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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user