Skip to content

Commit

Permalink
Whitespace fix
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Rodgman <[email protected]>
  • Loading branch information
daverodgman committed Mar 31, 2023
1 parent 6ab5d5c commit 2497c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/suites/test_suite_timing.function
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void timing_get_timer()
/* Check that a non-zero time was written back */
int all_zero = 1;
for (size_t i = 0; i < sizeof(time); i++) {
all_zero &= ((unsigned char *)&time)[i] == 0;
all_zero &= ((unsigned char *) &time)[i] == 0;
}
TEST_ASSERT(!all_zero);

Expand Down

0 comments on commit 2497c6b

Please sign in to comment.