commit | d8bb82665efd406fa76cebe419943ef175a96740 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jun 17 14:06:49 2014 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jun 17 14:06:49 2014 +0200 |
tree | 9dfa558aea1b780c82a704acd2597718352cfdd5 | |
parent | 3c38f29a615a6da97088332d71883e4a617088f3 [diff] [blame] |
Fix code styling for return statements
diff --git a/library/pk_wrap.c b/library/pk_wrap.c index 56739b7..5e9ff60 100644 --- a/library/pk_wrap.c +++ b/library/pk_wrap.c
@@ -132,7 +132,7 @@ if( ctx != NULL ) rsa_init( (rsa_context *) ctx, 0, 0 ); - return ctx; + return( ctx ); } static void rsa_free_wrap( void *ctx ) @@ -426,7 +426,7 @@ if( ctx != NULL ) memset( ctx, 0, sizeof( rsa_alt_context ) ); - return ctx; + return( ctx ); } static void rsa_alt_free_wrap( void *ctx )