mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 05:13:36 +08:00
fixed: warning, size_t to UInt32 cast.
This commit is contained in:
@@ -77,7 +77,7 @@ CCryptoStream::read(void* out, UInt32 n)
|
||||
m_decryption.processData(static_cast<byte*>(out), cypher, n);
|
||||
logBuffer("plaintext", static_cast<byte*>(out), n);
|
||||
delete[] cypher;
|
||||
return result;
|
||||
return static_cast<UInt32>(result);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user