From 16422831ed49c573c1b8a43ba907bceb00fd5eea Mon Sep 17 00:00:00 2001 From: Christian C Date: Sat, 22 Mar 2025 22:27:40 -0700 Subject: Named Types --- test/lib/time.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/lib/time.c') diff --git a/test/lib/time.c b/test/lib/time.c index 5c29bbc..67c8f33 100644 --- a/test/lib/time.c +++ b/test/lib/time.c @@ -14,7 +14,7 @@ bool_t test_diff_time(const struct timespec *time1, const struct timespec *time0 return FALSE; } -void _TEST_diff_time(bool_t* result, uint16_t* test_count, uint16_t* test_pass) +void _TEST_diff_time(bool_t* result, TestCount_t* test_count, TestCount_t* test_pass) { bool_t sub_result; // Test 1: 0-0=0 @@ -50,8 +50,8 @@ void _TEST_diff_time(bool_t* result, uint16_t* test_count, uint16_t* test_pass) bool_t TEST_lib_time() { - uint16_t test_count = 0; - uint16_t test_pass = 0; + TestCount_t test_count = 0; + TestCount_t test_pass = 0; bool_t result = TRUE; // Testing directory existence -- cgit v1.2.1