*** empty log message ***

pull/2/head
weidai 2004-06-19 09:01:35 +00:00
parent f78fccb3cc
commit 9f254b1146
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ void Inflator::OutputString(const byte *string, unsigned int length)
{
while (length)
{
unsigned int len = STDMIN(length, m_window.size() - m_current);
unsigned int len = STDMIN(length, unsigned int(m_window.size() - m_current));
memcpy(m_window + m_current, string, len);
m_current += len;
if (m_current == m_window.size())