From 7dd850885e367367a6261a9629d577136db932eb Mon Sep 17 00:00:00 2001 From: Andreas Fredriksson Date: Mon, 5 Dec 2016 15:33:48 -0800 Subject: [PATCH] Fix up so SHA-1 code so it builds if enabled --- src/HashSha1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HashSha1.cpp b/src/HashSha1.cpp index 392b9ee0..b46c4070 100644 --- a/src/HashSha1.cpp +++ b/src/HashSha1.cpp @@ -10,7 +10,7 @@ static inline uint32_t SHA1Rotate(uint32_t value, uint32_t bits) return ((value) << bits) | (value >> (32 - bits)); } -void HashBlock(const uint8_t* block, HashStateImpl* state) +void HashBlock(const uint8_t* block, HashStateImpl* state, void* debug_file_) { uint32_t w[80];