]> Kevux Git Server - fll/commitdiff
Cleanup: Use consistent ordering in fss_read_cache_t.
authorKevin Day <Kevin@kevux.org>
Mon, 19 Aug 2024 03:22:23 +0000 (22:22 -0500)
committerKevin Day <Kevin@kevux.org>
Mon, 19 Aug 2024 03:22:35 +0000 (22:22 -0500)
level_3/fss_read/c/main/common/type.h

index a16e87f616584df5caadf7ce3ab2e3438655530d..f629a97dbbb0ea98bfc769afea6522f4a36970be 100644 (file)
@@ -117,18 +117,18 @@ extern "C" {
 /**
  * The FSS Read cache.
  *
- * positions: A positions array used by the fll_fss_embedded_list_read() function.
  * objects:   An objects array used by the fll_fss_embedded_list_read() function.
+ * positions: A positions array used by the fll_fss_embedded_list_read() function.
  * slashes:   A slashes array used by the fll_fss_embedded_list_read() function.
  */
 #ifndef _di_fss_read_cache_t_
   typedef struct {
-    f_number_unsigneds_t positions;
     f_ranges_t objects;
+    f_number_unsigneds_t positions;
     f_number_unsigneds_t slashes;
   } fss_read_cache_t;
 
-  #define fss_read_cache_t_initialize { f_number_unsigneds_t_initialize, f_ranges_t_initialize, f_number_unsigneds_t_initialize }
+  #define fss_read_cache_t_initialize { f_ranges_t_initialize, f_number_unsigneds_t_initialize, f_number_unsigneds_t_initialize }
 #endif // _di_fss_read_cache_t_
 
 /**