Fix formatting in various code to match spacing from coding style
diff --git a/library/asn1parse.c b/library/asn1parse.c
index 79b2901..9744352 100644
--- a/library/asn1parse.c
+++ b/library/asn1parse.c
@@ -194,7 +194,7 @@
return( ret );
/* Check length, subtract one for actual bit string length */
- if ( bs->len < 1 )
+ if( bs->len < 1 )
return( POLARSSL_ERR_ASN1_OUT_OF_DATA );
bs->len -= 1;
@@ -265,7 +265,7 @@
*p += buf->len;
/* Allocate and assign next pointer */
- if (*p < end)
+ if( *p < end )
{
cur->next = (asn1_sequence *) polarssl_malloc(
sizeof( asn1_sequence ) );