aboutsummaryrefslogtreecommitdiffstats
path: root/extra/libkeccak_state_wipe_sponge.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--extra/libkeccak_state_wipe_sponge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/libkeccak_state_wipe_sponge.c b/extra/libkeccak_state_wipe_sponge.c
index 91e845a..69aa46a 100644
--- a/extra/libkeccak_state_wipe_sponge.c
+++ b/extra/libkeccak_state_wipe_sponge.c
@@ -10,7 +10,7 @@
void
libkeccak_state_wipe_sponge(volatile struct libkeccak_state *state)
{
- volatile int64_t *restrict S = state->S;
+ volatile uint64_t *restrict S = state->S.w64;
size_t i;
for (i = 0; i < 25; i++)