From 0c539447c1d53c82bc0e931d6a37fda46e80cc93 Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Mon, 18 Apr 2016 09:59:16 +0100 Subject: [PATCH] Fixes no return value warning in selftest.c --- programs/test/selftest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/test/selftest.c b/programs/test/selftest.c index 6ca07bba2..e57a78e5a 100644 --- a/programs/test/selftest.c +++ b/programs/test/selftest.c @@ -397,6 +397,6 @@ int main( int argc, char *argv[] ) if( suites_failed > 0) mbedtls_exit( MBEDTLS_EXIT_FAILURE ); - mbedtls_exit( MBEDTLS_EXIT_SUCCESS ); + return( MBEDTLS_EXIT_SUCCESS ); }