]> Kevux Git Server - fll/commitdiff
Bugfix: Trailing semi-colon added at the end of the macro for f_time_spec_t.
authorKevin Day <Kevin@kevux.org>
Sun, 23 Mar 2025 00:34:20 +0000 (19:34 -0500)
committerKevin Day <Kevin@kevux.org>
Sun, 23 Mar 2025 00:34:20 +0000 (19:34 -0500)
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

index 6e97ef19825397a9d68bb3f6a70c3ea35d5e0b6d..3452891c0ccd9925f9a4c754ba2e84d59d33ce3c 100644 (file)
@@ -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_
 
 /**