Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Common/CRC.cpp')
-rwxr-xr-xCommon/CRC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/CRC.cpp b/Common/CRC.cpp
index 3e90c713..35e1a187 100755
--- a/Common/CRC.cpp
+++ b/Common/CRC.cpp
@@ -51,7 +51,7 @@ void CCRC::UpdateUInt64(UInt64 v)
UpdateByte((Byte)(v >> (8 * i)));
}
-void CCRC::Update(const void *data, UInt32 size)
+void CCRC::Update(const void *data, size_t size)
{
UInt32 v = _value;
const Byte *p = (const Byte *)data;