From: Kevin Day Date: Wed, 23 Nov 2022 02:46:16 +0000 (-0600) Subject: Regression: The f_console_environment_process() is accidentally set to private. X-Git-Tag: 0.6.2~65 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=beea92ffc67968f17125707add7c23990961c8f7;p=fll 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. --- 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_ /**