Correct readability-non-const-parameter warning

* Correct readability-non-const-parameter warning

* Double const
This commit is contained in:
Ben RUBSON 2017-11-05 17:28:57 +01:00 committed by GitHub
parent 92b209f7c0
commit 707eddabf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -505,7 +505,7 @@ CipherKey SSL_Cipher::newRandomKey() {
compute a 64-bit check value for the data using HMAC.
*/
static uint64_t _checksum_64(SSLKey *key, const unsigned char *data,
int dataLen, uint64_t *const chainedIV) {
int dataLen, const uint64_t *const chainedIV) {
rAssert(dataLen > 0);
Lock lock(key->mutex);