commit | 0c539447c1d53c82bc0e931d6a37fda46e80cc93 | [log] [tgz] |
---|---|---|
author | Janos Follath <janos.follath@arm.com> | Mon Apr 18 09:59:16 2016 +0100 |
committer | Janos Follath <janos.follath@arm.com> | Mon Apr 18 09:59:16 2016 +0100 |
tree | 810cc6f80f139083e7c8dc79fb58f94f8f9308d1 | |
parent | 0914ac47d2fbf10e951a2f8cc50589cdbeda3061 [diff] [blame] |
Fixes no return value warning in selftest.c
diff --git a/programs/test/selftest.c b/programs/test/selftest.c index 6ca07bb..e57a78e 100644 --- a/programs/test/selftest.c +++ b/programs/test/selftest.c
@@ -397,6 +397,6 @@ if( suites_failed > 0) mbedtls_exit( MBEDTLS_EXIT_FAILURE ); - mbedtls_exit( MBEDTLS_EXIT_SUCCESS ); + return( MBEDTLS_EXIT_SUCCESS ); }