mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
Correct readability-non-const-parameter warning
* Correct readability-non-const-parameter warning * Double const
This commit is contained in:
parent
92b209f7c0
commit
707eddabf4
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user