From ac8b56ebbad1915b506d37c30d698c1a450ce2d3 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 22 Mar 2025 19:34:20 -0500 Subject: [PATCH] Bugfix: Trailing semi-colon added at the end of the macro for f_time_spec_t. The semi-colons should not be auto-added like this. When adding the define inside an array, the semi-colon will cause compile problems that are hard to debug. --- level_0/f_type/c/type/time.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_type/c/type/time.h b/level_0/f_type/c/type/time.h index 6e97ef1..3452891 100644 --- a/level_0/f_type/c/type/time.h +++ b/level_0/f_type/c/type/time.h @@ -63,7 +63,7 @@ extern "C" { #define f_time_spec_t_initialize { 0 } - #define macro_f_time_spec_t_initialize_1(seconds, nanoseconds) { .tv_sec = seconds, .tv_nsec = nanoseconds }; + #define macro_f_time_spec_t_initialize_1(seconds, nanoseconds) { .tv_sec = seconds, .tv_nsec = nanoseconds } #endif // _di_f_time_spec_t_ /** @@ -74,7 +74,7 @@ extern "C" { #define f_time_value_t_initialize { 0 } - #define macro_f_time_value_t_initialize_1(seconds, nanoseconds) { .tv_sec = seconds, .tv_usec = nanoseconds }; + #define macro_f_time_value_t_initialize_1(seconds, nanoseconds) { .tv_sec = seconds, .tv_usec = nanoseconds } #endif // _di_f_time_value_t_ /** -- 1.8.3.1