From 79a185e2053306af3f937343c69d6c935709a078 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 8 Dec 2022 22:37:54 -0600 Subject: [PATCH] Update: The define _di_f_array_t_ should be _di_f_array_length_t_. --- level_0/f_type/c/type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index 6a8898a..09c2799 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -310,7 +310,7 @@ extern "C" { * This may need to be set to a signed 64-bit integer on some system (or a smaller unsigned). * There are problems, however, with signed integers and binary operations as well as with overflows to be aware of. */ -#ifndef _di_f_array_t_ +#ifndef _di_f_array_length_t_ typedef f_number_unsigned_t f_array_length_t; #define f_array_length_t_initialize 0 @@ -319,7 +319,7 @@ extern "C" { #define F_array_length_t_size_d F_number_t_size_unsigned_d #define F_array_length_t_size_max_d F_number_t_size_max_unsigned_d -#endif // _di_f_array_t_ +#endif // _di_f_array_length_t_ /** * A structure designating a row and column, just like a cell in a table. -- 1.8.3.1