From 6aeae9e962b665c826fc349538eb61b90c1f69c0 Mon Sep 17 00:00:00 2001 From: Ron Eldor Date: Mon, 20 May 2019 12:00:36 +0300 Subject: [PATCH] Style fix Add whitespace before parenthesis. --- library/x509_crt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/x509_crt.c b/library/x509_crt.c index 8200374cdd..708dbf7715 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c @@ -2115,7 +2115,7 @@ int mbedtls_x509_crt_info( char *buf, size_t size, const char *prefix, if( ( ret = x509_info_subject_alt_name( &p, &n, &crt->subject_alt_names, - prefix) ) != 0 ) + prefix ) ) != 0 ) return( ret ); }