Skip to content

Commit

Permalink
Fix up so SHA-1 code so it builds if enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
deplinenoise committed Feb 22, 2017
1 parent 832cbb5 commit 7dd8508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HashSha1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit 7dd8508

Please sign in to comment.