diff mbox series

[01/12] crypto: authencesn - fix weird comma-terminated line

Message ID 20200226045924.97053-2-ebiggers@kernel.org
State New
Headers show
Series [01/12] crypto: authencesn - fix weird comma-terminated line | expand

Commit Message

Eric Biggers Feb. 26, 2020, 4:59 a.m. UTC
From: Eric Biggers <ebiggers@google.com>

Fix a weird case where a line was terminated by a comma rather than a
semicolon, causing the statement to be continued on the next line.
Fortunately the code still behaved as intended, though.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 crypto/authencesn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: ff462ddfd95b915345c3c7c037c3bfafdc58bae7
diff mbox series

Patch

diff --git a/crypto/authencesn.c b/crypto/authencesn.c
index 589008146fce7..149b70df2a917 100644
--- a/crypto/authencesn.c
+++ b/crypto/authencesn.c
@@ -458,7 +458,7 @@  static int crypto_authenc_esn_create(struct crypto_template *tmpl,
 	inst->alg.encrypt = crypto_authenc_esn_encrypt;
 	inst->alg.decrypt = crypto_authenc_esn_decrypt;
 
-	inst->free = crypto_authenc_esn_free,
+	inst->free = crypto_authenc_esn_free;
 
 	err = aead_register_instance(tmpl, inst);
 	if (err) {