From 707eddabf4f8d0e5028d7a24195d3a6c50f37b92 Mon Sep 17 00:00:00 2001 From: Ben RUBSON Date: Sun, 5 Nov 2017 17:28:57 +0100 Subject: [PATCH] Correct readability-non-const-parameter warning * Correct readability-non-const-parameter warning * Double const --- encfs/SSL_Cipher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encfs/SSL_Cipher.cpp b/encfs/SSL_Cipher.cpp index 897eacee..384fba8f 100644 --- a/encfs/SSL_Cipher.cpp +++ b/encfs/SSL_Cipher.cpp @@ -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);