[8633] Fix possible build error at ASSERT redefine.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Derex 2009-10-13 20:46:31 +04:00 committed by VladimirMangos
parent 85d8aaccd8
commit fd48113941
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ void HmacHash::Finalize()
{
uint32 length = 0;
HMAC_Final(&m_ctx, (uint8*)m_digest, &length);
ASSERT(length == SHA_DIGEST_LENGTH)
ASSERT(length == SHA_DIGEST_LENGTH);
}
uint8 *HmacHash::ComputeHash(BigNumber *bn)