]> Kevux Git Server - fll/commitdiff
Regression: The f_console_environment_process() is accidentally set to private.
authorKevin Day <thekevinday@gmail.com>
Wed, 23 Nov 2022 02:46:16 +0000 (20:46 -0600)
committerKevin Day <thekevinday@gmail.com>
Wed, 23 Nov 2022 02:46:16 +0000 (20:46 -0600)
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

index 5a29d78b19eba4607a3fa3581e6812bc2bbea39c..4f6df8b7a7513617cad0ce65b64addd5efaf8e9f 100644 (file)
@@ -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_
 
 /**