aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/shash.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/shash.c')
-rw-r--r--crypto/shash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/shash.c b/crypto/shash.c
index 783231090005..23e05a1e9038 100644
--- a/crypto/shash.c
+++ b/crypto/shash.c
@@ -180,7 +180,7 @@ int crypto_shash_import(struct shash_desc *desc, const u8 *in)
180 memcpy(shash_desc_ctx(desc), in, crypto_shash_descsize(tfm)); 180 memcpy(shash_desc_ctx(desc), in, crypto_shash_descsize(tfm));
181 181
182 if (alg->reinit) 182 if (alg->reinit)
183 alg->reinit(desc); 183 return alg->reinit(desc);
184 184
185 return 0; 185 return 0;
186} 186}