From beea92ffc67968f17125707add7c23990961c8f7 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 22 Nov 2022 20:46:16 -0600 Subject: [PATCH] Regression: The f_console_environment_process() is accidentally set to private. The commit 05c24138c0ad8f15a557274f21956fed206fec23 accidentally set the public function to private. There are private functions that were set to private here but I somehow added F_attribute_visibility_internal_d to a public function. --- level_0/f_console/c/console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_console/c/console.h b/level_0/f_console/c/console.h index 5a29d78..4f6df8b 100644 --- a/level_0/f_console/c/console.h +++ b/level_0/f_console/c/console.h @@ -49,7 +49,7 @@ extern "C" { * @see f_string_maps_increase_by() */ #ifndef _di_f_console_environment_process_ - extern f_status_t f_console_environment_process(const f_console_arguments_t arguments, f_string_maps_t * const environment) F_attribute_visibility_internal_d; + extern f_status_t f_console_environment_process(const f_console_arguments_t arguments, f_string_maps_t * const environment); #endif // _di_f_console_environment_process_ /** -- 1.8.3.1