diff mbox series

X.509: fix debugging information without newline tag

Message ID 20200219131731.46087-1-tianjia.zhang@linux.alibaba.com (mailing list archive)
State Not Applicable
Delegated to: Herbert Xu
Headers show
Series X.509: fix debugging information without newline tag | expand

Commit Message

tianjia.zhang Feb. 19, 2020, 1:17 p.m. UTC
Added missing newline tag to this line of pr_devel debug information.

Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
---
 crypto/asymmetric_keys/x509_public_key.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/crypto/asymmetric_keys/x509_public_key.c b/crypto/asymmetric_keys/x509_public_key.c
index feccec08b244..4553619ea01d 100644
--- a/crypto/asymmetric_keys/x509_public_key.c
+++ b/crypto/asymmetric_keys/x509_public_key.c
@@ -140,7 +140,7 @@  int x509_check_for_self_signed(struct x509_certificate *cert)
 		goto out;
 	}
 
-	pr_devel("Cert Self-signature verified");
+	pr_devel("Cert Self-signature verified\n");
 	cert->self_signed = true;
 
 out: