1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

fix various comment issues

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu
2021-09-03 21:09:22 +08:00
parent ef387d79a4
commit 8c02bb4b71
2 changed files with 8 additions and 14 deletions

View File

@ -132,10 +132,10 @@
#define MBEDTLS_SSL_EXT_KEY_SHARE ( 1 << 21 )
/*
* Helper macros for function call with returen check.
* Helper macros for function call with return check.
*/
/*
* Exit and print debug message when return none zero value
* Exit when return non-zero value
*/
#define MBEDTLS_SSL_PROC_CHK( f ) \
do { \
@ -146,7 +146,7 @@
} \
} while( 0 )
/*
* Exit and print debug message when return negative value
* Exit when return negative value
*/
#define MBEDTLS_SSL_PROC_CHK_NEG( f ) \
do { \