aboutsummaryrefslogtreecommitdiffstats
path: root/src/checksum/crc24/crc24.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/checksum/crc24/crc24.h')
-rw-r--r--src/checksum/crc24/crc24.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checksum/crc24/crc24.h b/src/checksum/crc24/crc24.h
index 2fc5af2ff..f9786dfa4 100644
--- a/src/checksum/crc24/crc24.h
+++ b/src/checksum/crc24/crc24.h
@@ -24,7 +24,7 @@ class BOTAN_DLL CRC24 : public HashFunction
CRC24() : HashFunction(3) { clear(); }
~CRC24() { clear(); }
private:
- void add_data(const byte[], u32bit);
+ void add_data(const byte[], size_t);
void final_result(byte[]);
u32bit crc;
};