1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Replace double MAYBE_VOLATILE

This commit is contained in:
jsteube 2018-08-09 19:44:54 +02:00
parent dad05d9f69
commit 188a9568ce

View File

@ -176,7 +176,7 @@ DECLSPEC void sha1_init (sha1_ctx_t *ctx)
DECLSPEC void sha1_update_64 (sha1_ctx_t *ctx, u32 *w0, u32 *w1, u32 *w2, u32 *w3, const int len)
{
MAYBE_VOLATILE MAYBE_VOLATILE const int pos = ctx->len & 63;
MAYBE_VOLATILE const int pos = ctx->len & 63;
ctx->len += len;