Coding style change

This commit is contained in:
Nils O. Selåsdal
2012-12-05 18:53:58 +01:00
parent d9c8b2b48a
commit 16e1ac52ec
32 changed files with 236 additions and 234 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ main (int argc, char *argv[])
int number_failed = 0;
SRunner *sr = srunner_create (NULL);
if(xml_output)
if (xml_output)
srunner_set_xml(sr, "result.xml");
srunner_add_suite(sr, bitvec_suite());
@@ -39,7 +39,7 @@ main (int argc, char *argv[])
number_failed = srunner_ntests_failed (sr);
srunner_free (sr);
if(number_failed)
if (number_failed)
printf("ERROR: %d tests failed\n", number_failed);
return (number_failed != 0) ;