summaryrefslogtreecommitdiff
path: root/panama.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2011-01-07 01:30:24 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2011-01-07 01:30:24 +0000
commit80640a5c45dc11ffaca85c59288633423d7acdcb (patch)
tree14b81a8cb9f58ad14044ee04f7e6070584be0ae0 /panama.cpp
parent2fcef9d799e43a8175e82402031ec14d6c327775 (diff)
downloadcryptopp-80640a5c45dc11ffaca85c59288633423d7acdcb.tar.gz
fix for compiling with Clang from Marshall Clow
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@522 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'panama.cpp')
-rw-r--r--panama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/panama.cpp b/panama.cpp
index 09b1708..a1a37d6 100644
--- a/panama.cpp
+++ b/panama.cpp
@@ -422,7 +422,7 @@ void PanamaHash<B>::TruncatedFinal(byte *hash, size_t size)
{
this->ThrowIfInvalidTruncatedSize(size);
- PadLastBlock(this->BLOCKSIZE, 0x01);
+ this->PadLastBlock(this->BLOCKSIZE, 0x01);
HashEndianCorrectedBlock(this->m_data);