Fixed typo

Thanks to Gawaboumga


Former-commit-id: 106e83d7353cebdfbb6daf9abb958191ece9c4da
This commit is contained in:
Lynix 2014-07-13 16:46:44 +02:00
parent b8ccbf4092
commit 736223e97e
1 changed files with 2 additions and 2 deletions

View File

@ -4351,9 +4351,9 @@ void NzString::EnsureOwnership(bool discardContent)
}
}
bool NzString::FillHash(NzAbstractHash* hazh) const
bool NzString::FillHash(NzAbstractHash* hash) const
{
hazh->Append(reinterpret_cast<const nzUInt8*>(m_sharedString->string), m_sharedString->size);
hash->Append(reinterpret_cast<const nzUInt8*>(m_sharedString->string), m_sharedString->size);
return true;
}