Problem: redundant consecutive return statements

Solution: remove the redundant one
This commit is contained in:
Simon Giesecke 2019-12-23 11:59:28 +01:00
parent ddbf45cf8d
commit a64c3e6c7d

View File

@ -333,5 +333,4 @@ int main (void)
RUN_TEST (test_vanilla_socket);
RUN_TEST (test_unauth_creds);
return UNITY_END ();
return 0;
}