Skip to content

Commit

Permalink
Correct readability-non-const-parameter warning
Browse files Browse the repository at this point in the history
* Correct readability-non-const-parameter warning

* Double const
  • Loading branch information
Ben RUBSON committed Nov 5, 2017
1 parent 92b209f commit 707edda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encfs/SSL_Cipher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 707edda

Please sign in to comment.