diff options
Diffstat (limited to 'crypto/authenc.c')
| -rw-r--r-- | crypto/authenc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c index b9884ee0adb6..a5a22cfcd07b 100644 --- a/crypto/authenc.c +++ b/crypto/authenc.c @@ -616,7 +616,7 @@ static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb)  	auth = ahash_attr_alg(tb[1], CRYPTO_ALG_TYPE_HASH,  			       CRYPTO_ALG_TYPE_AHASH_MASK);  	if (IS_ERR(auth)) -		return ERR_PTR(PTR_ERR(auth)); +		return ERR_CAST(auth);  	auth_base = &auth->base;  | 
