fixed: warning, size_t to UInt32 cast.

This commit is contained in:
Nick Bolton 2014-03-14 18:31:06 +00:00
parent abe108195d
commit bdb2ff5967
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ CCryptoStream::read(void* out, UInt32 n)
m_decryption.processData(static_cast<byte*>(out), cypher, n); m_decryption.processData(static_cast<byte*>(out), cypher, n);
logBuffer("plaintext", static_cast<byte*>(out), n); logBuffer("plaintext", static_cast<byte*>(out), n);
delete[] cypher; delete[] cypher;
return result; return static_cast<UInt32>(result);
} }
void void