Fix a few places where there was a semicolon following the 'if' condition, makeing the following logic unconditional.

This commit is contained in:
Gregory Nutt
2017-10-10 14:24:13 -06:00
parent 2238785bf1
commit eb79a575f6
5 changed files with 12 additions and 7 deletions
+5 -1
View File
@@ -124,8 +124,12 @@ static int test_aes(void)
int crypto_test(void)
{
#if defined(CONFIG_CRYPTO_AES)
if (test_aes()) return -1;
if (test_aes())
{
return -1;
}
#endif
return OK;
}