diff options
author | Mattias Andrée <maandree@kth.se> | 2019-02-10 23:34:52 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-02-10 23:35:17 +0100 |
commit | e9376658fac4ddacaec3ca111998a6513eb55f3b (patch) | |
tree | a0b059f36d6a1801ea50bd692332b66e7507233a /libkeccak.h | |
parent | General API improvements (diff) | |
download | libkeccak-e9376658fac4ddacaec3ca111998a6513eb55f3b.tar.gz libkeccak-e9376658fac4ddacaec3ca111998a6513eb55f3b.tar.bz2 libkeccak-e9376658fac4ddacaec3ca111998a6513eb55f3b.tar.xz |
Fix warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libkeccak.h')
-rw-r--r-- | libkeccak.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkeccak.h b/libkeccak.h index 21b4b47..7a95f91 100644 --- a/libkeccak.h +++ b/libkeccak.h @@ -834,7 +834,7 @@ typedef struct libkeccak_hmac_state */ char leftover; - char __pad[sizeof(void*) / sizeof(char) - 1]; + char __pad[sizeof(void *) / sizeof(char) - 1]; } libkeccak_hmac_state_t; |