Fix code styling for return statements

This commit is contained in:
Paul Bakker 2014-06-17 14:06:49 +02:00
parent 3c38f29a61
commit d8bb82665e
27 changed files with 256 additions and 256 deletions
library

View file

@ -830,7 +830,7 @@ static int pk_parse_key_sec1_der( ecp_keypair *eck,
return( ret );
}
return 0;
return( 0 );
}
#endif /* POLARSSL_ECP_C */
@ -919,7 +919,7 @@ static int pk_parse_key_pkcs8_unencrypted_der(
#endif /* POLARSSL_ECP_C */
return( POLARSSL_ERR_PK_UNKNOWN_PK_ALG );
return 0;
return( 0 );
}
/*