From 15061b28a3beb1578d6cda04130484c8583eefab Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 18 Aug 2024 22:22:23 -0500 Subject: [PATCH] Cleanup: Use consistent ordering in fss_read_cache_t. --- level_3/fss_read/c/main/common/type.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/level_3/fss_read/c/main/common/type.h b/level_3/fss_read/c/main/common/type.h index a16e87f..f629a97 100644 --- a/level_3/fss_read/c/main/common/type.h +++ b/level_3/fss_read/c/main/common/type.h @@ -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_ /** -- 1.8.3.1