Align with coding style

return statements use parentheses to contain their value.

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
Gaurav Aggarwal 2020-04-22 08:13:25 -07:00
parent 8663c7415a
commit cabde25289
3 changed files with 258 additions and 258 deletions

View file

@ -62,7 +62,7 @@ HIGH_LEVEL_CODE_CHECKS
break;
}
return NULL;
return( NULL );
}
const char * mbedtls_low_level_strerr( int error_code )
@ -85,7 +85,7 @@ LOW_LEVEL_CODE_CHECKS
break;
}
return NULL;
return( NULL );
}
void mbedtls_strerror( int ret, char *buf, size_t buflen )