Fix code style
Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
diff --git a/library/x509_create.c b/library/x509_create.c
index 307e8be..1da1587 100644
--- a/library/x509_create.c
+++ b/library/x509_create.c
@@ -158,7 +158,7 @@
const char *end = s + len;
unsigned char *d = data;
int n;
-
+
for (c = s; c < end; c++) {
if (*c == '\\') {
c++;
@@ -175,9 +175,9 @@
return MBEDTLS_ERR_X509_INVALID_NAME;
}
}
-
+
*(d++) = *c;
-
+
if (d - data == MBEDTLS_X509_MAX_DN_NAME_SIZE) {
return MBEDTLS_ERR_X509_INVALID_NAME;
}
@@ -200,7 +200,7 @@
unsigned char *p;
unsigned char *d = data;
int n;
-
+
/* Converting from hexstring to raw binary so we can use asn1parse.c */
if ((len < 5) || (*c != '#')) {
return MBEDTLS_ERR_X509_INVALID_NAME;