fixed: warning, size_t to UInt32 cast.
This commit is contained in:
parent
abe108195d
commit
bdb2ff5967
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue