summaryrefslogtreecommitdiffstats
path: root/crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c')
-rw-r--r--crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c b/crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c
index a9149166700..74226767a72 100644
--- a/crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c
+++ b/crypto/userspace/libtomcrypt/hashes/hash_memory_multi.c
@@ -50,7 +50,7 @@ int hash_memory_multi(const struct algo_properties_st *hash, unsigned char *out,
return CRYPT_BUFFER_OVERFLOW;
}
- err = cryptodev_hash_init( &hdata, hash->kstr, 0, NULL, 0);
+ err = cryptodev_hash_init(&hdata, hash->kstr, NULL, 0);
if (err < 0) {
err = CRYPT_INVALID_HASH;
goto LBL_ERR;