Removed return from error_strerror()

This commit is contained in:
Paul Bakker 2013-10-11 15:09:40 +02:00
parent beccd9f226
commit b887f1119e
2 changed files with 4 additions and 4 deletions

View file

@ -674,7 +674,7 @@ void polarssl_strerror( int ret, char *buf, size_t buflen )
#if defined(POLARSSL_ERROR_STRERROR_BC)
void error_strerror( int ret, char *buf, size_t buflen )
{
return polarssl_strerror( ret, buf, buflen );
polarssl_strerror( ret, buf, buflen );
}
#endif /* POLARSSL_ERROR_STRERROR_BC */
@ -698,7 +698,7 @@ void polarssl_strerror( int ret, char *buf, size_t buflen )
#if defined(POLARSSL_ERROR_STRERROR_BC)
void error_strerror( int ret, char *buf, size_t buflen )
{
return polarssl_strerror( ret, buf, buflen );
polarssl_strerror( ret, buf, buflen );
}
#endif /* POLARSSL_ERROR_STRERROR_BC */
#endif /* POLARSSL_ERROR_STRERROR_DUMMY */

View file

@ -91,7 +91,7 @@ LOW_LEVEL_CODE_CHECKS
#if defined(POLARSSL_ERROR_STRERROR_BC)
void error_strerror( int ret, char *buf, size_t buflen )
{
return polarssl_strerror( ret, buf, buflen );
polarssl_strerror( ret, buf, buflen );
}
#endif /* POLARSSL_ERROR_STRERROR_BC */
@ -115,7 +115,7 @@ void polarssl_strerror( int ret, char *buf, size_t buflen )
#if defined(POLARSSL_ERROR_STRERROR_BC)
void error_strerror( int ret, char *buf, size_t buflen )
{
return polarssl_strerror( ret, buf, buflen );
polarssl_strerror( ret, buf, buflen );
}
#endif /* POLARSSL_ERROR_STRERROR_BC */
#endif /* POLARSSL_ERROR_STRERROR_DUMMY */