diff options
Diffstat (limited to '')
-rw-r--r-- | libkeccak_hmac_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkeccak_hmac_update.c b/libkeccak_hmac_update.c index b2321f2..6182a0a 100644 --- a/libkeccak_hmac_update.c +++ b/libkeccak_hmac_update.c @@ -12,7 +12,7 @@ * @return Zero on success, -1 on error */ int -libkeccak_hmac_update(libkeccak_hmac_state_t *restrict state, const void *restrict msg_, size_t msglen) +libkeccak_hmac_update(struct libkeccak_hmac_state *restrict state, const void *restrict msg_, size_t msglen) { const char *restrict msg = msg_; size_t i; |