From: Kevin Day Date: Mon, 19 Aug 2024 03:22:23 +0000 (-0500) Subject: Cleanup: Use consistent ordering in fss_read_cache_t. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=15061b28a3beb1578d6cda04130484c8583eefab;p=fll Cleanup: Use consistent ordering in fss_read_cache_t. --- 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_ /**