summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--iterhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/iterhash.cpp b/iterhash.cpp
index 3e01556..877007e 100644
--- a/iterhash.cpp
+++ b/iterhash.cpp
@@ -13,7 +13,7 @@ template <class T, class BASE> void IteratedHashBase<T, BASE>::Update(const byte
m_countHi++; // carry from low to high
m_countHi += SafeRightShift<8*sizeof(HashWordType)>(len);
if (m_countHi < oldCountHi)
- throw HashInputTooLong(AlgorithmName());
+ throw HashInputTooLong(this->AlgorithmName());
unsigned int blockSize = BlockSize();
unsigned int num = ModPowerOf2(oldCountLo, blockSize);