Whitespace fix

Signed-off-by: Dave Rodgman <[email protected]>
This commit is contained in:
Dave Rodgman
2023-03-31 18:05:19 +01:00
parent 6ab5d5c536
commit 2497c6b860
+1 -1
View File
@@ -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);