removed unnecessary ampersands
This commit is contained in:
parent
d7207a3df3
commit
14262a816e
|
@ -42,13 +42,13 @@ void
|
|||
test_initial_state(TestState *s)
|
||||
{
|
||||
print("Testing initial state\n");
|
||||
run_test(s, &initial_test_count);
|
||||
run_test(s, &initial_pass_count);
|
||||
run_test(s, &initial_fail_count);
|
||||
run_test(s, &initial_pend_count);
|
||||
run_test(s, &initial_first_log);
|
||||
run_test(s, &initial_last_log);
|
||||
run_test(s, &initial_ptr);
|
||||
run_test(s, initial_test_count);
|
||||
run_test(s, initial_pass_count);
|
||||
run_test(s, initial_fail_count);
|
||||
run_test(s, initial_pend_count);
|
||||
run_test(s, initial_first_log);
|
||||
run_test(s, initial_last_log);
|
||||
run_test(s, initial_ptr);
|
||||
}
|
||||
|
||||
// Internal Functions
|
||||
|
|
|
@ -33,7 +33,7 @@ static void tests(TestState *);
|
|||
void
|
||||
main()
|
||||
{
|
||||
run_tests(&tests);
|
||||
run_tests(tests);
|
||||
exits(0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user