]> Kevux Git Server - fll/commitdiff
Cleanup: Use '{ 0 }' as initializer for f_thread_set_t_initialize.
authorKevin Day <thekevinday@gmail.com>
Fri, 11 Aug 2023 01:23:18 +0000 (20:23 -0500)
committerKevin Day <thekevinday@gmail.com>
Fri, 11 Aug 2023 01:23:18 +0000 (20:23 -0500)
The f_thread_attribute_t_initialize works using '{ 0 }' as the initializer.
For whatever reason, the compilers do not like explicit initializers with the auto NULL ones like '{ 0 }'.
Switching to '{ 0 }' makes compilers happy and making compilers happy is often a good thing.

level_0/f_thread/c/thread/set.h

index 1a3e959c2ae2aa923e36a8097c8cf1ef689a13ec..2dd9316d328cea68b3b28b3e98b32b2d567fe71e 100644 (file)
@@ -30,7 +30,7 @@ extern "C" {
     int result;
   } f_thread_set_t;
 
-  #define f_thread_set_t_initialize { f_thread_attribute_t_initialize, f_thread_id_t_initialize, 0 }
+  #define f_thread_set_t_initialize { 0 }
 
   #define macro_f_thread_set_t_initialize(attribute, id, result) { attribute, id, result }