From 823b3d90d8344289992d02803e1af6ac35b5ae0c Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 18 Jun 2020 12:12:28 -0700 Subject: [PATCH] Add braces around new debug message to avoid compiler warning. --- wolfcrypt/src/asn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index 1156d570b..bda0c1fcd 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -9354,8 +9354,9 @@ int ParseCertRelative(DecodedCert* cert, int type, int verify, void* cm) cert->ca = GetCA(cm, cert->issuerHash); #endif /* !NO_SKID */ - if (cert->ca) + if (cert->ca) { WOLFSSL_MSG("CA found"); + } } if (cert->selfSigned) {