Skip to content

Commit

Permalink
Fix compilation with gcc 11.x
Browse files Browse the repository at this point in the history
Issue: #16
  • Loading branch information
vstakhov authored Jan 1, 2022
1 parent c7114c1 commit d6b3651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libasignify/blake2.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ extern "C" {
uint8_t personal[BLAKE2B_PERSONALBYTES]; // 64
} blake2b_param;

BLAKE_ALIGN( 64 ) typedef struct __blake2b_state
typedef struct BLAKE_ALIGN( 64 ) __blake2b_state
{
uint64_t h[8];
uint64_t t[2];
Expand Down

0 comments on commit d6b3651

Please sign in to comment.