Minor style changes

1. Rephrase error description.
2. fix alignment of error list.
This commit is contained in:
Ron Eldor 2018-09-12 14:43:44 +03:00
parent b0ad581526
commit 54a7c620bb
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@
#include "platform_time.h"
#endif
#define MBEDTLS_ERR_PLATFORM_HW_FAILED -0x0080 /**< Hardware platform function failed. */
#define MBEDTLS_ERR_PLATFORM_HW_FAILED -0x0080 /**< Hardware failed platform operation. */
#ifdef __cplusplus
extern "C" {

View File

@ -827,7 +827,7 @@ void mbedtls_strerror( int ret, char *buf, size_t buflen )
#if defined(MBEDTLS_PLATFORM_C)
if( use_ret == -(MBEDTLS_ERR_PLATFORM_HW_FAILED) )
mbedtls_snprintf( buf, buflen, "PLATFORM - Hardware platform function failed" );
mbedtls_snprintf( buf, buflen, "PLATFORM - Hardware failed platform operation" );
#endif /* MBEDTLS_PLATFORM_C */
#if defined(MBEDTLS_POLY1305_C)