1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-19 04:48:12 +00:00

use curly braces in if block

This commit is contained in:
Pavol Rusnak 2015-04-11 20:01:45 +02:00
parent 99f01a9391
commit f1b8f55d92

View File

@ -1448,7 +1448,8 @@ int main(void)
srunner_run_all(sr, CK_VERBOSE); srunner_run_all(sr, CK_VERBOSE);
number_failed = srunner_ntests_failed(sr); number_failed = srunner_ntests_failed(sr);
srunner_free(sr); srunner_free(sr);
if (number_failed == 0) if (number_failed == 0) {
printf("PASSED ALL TESTS\n"); printf("PASSED ALL TESTS\n");
}
return number_failed; return number_failed;
} }