From: Kevin Day Date: Fri, 7 Jun 2024 04:51:42 +0000 (-0500) Subject: Cleanup: Add space between 'failsafe' word and the next word. X-Git-Tag: 0.6.11~51 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=1668fe82229f61b2f6cbd40018840dbcdc386e97;p=fll Cleanup: Add space between 'failsafe' word and the next word. --- diff --git a/level_3/controller/c/entry/private-entry.c b/level_3/controller/c/entry/private-entry.c index 36b9de7..c1cf331 100644 --- a/level_3/controller/c/entry/private-entry.c +++ b/level_3/controller/c/entry/private-entry.c @@ -888,8 +888,13 @@ extern "C" { if (global->main->error.verbosity != f_console_verbosity_quiet_e && global->main->error.verbosity != f_console_verbosity_error_e) { controller_lock_print(global->main->output.to, global->thread); - fl_print_format("%rProcessing %r%r item '", global->main->output.to.stream, f_string_eol_s, failsafe ? controller_entry_print_failsafe_s : f_string_empty_s, is_entry ? controller_entry_s : controller_exit_s); - fl_print_format("%[%Q%]'.%r", global->main->output.to.stream, global->main->context.set.title, cache->action.name_item, global->main->context.set.title, f_string_eol_s); + fl_print_format("%rProcessing ", global->main->output.to.stream, f_string_eol_s, failsafe ? controller_entry_print_failsafe_s : f_string_empty_s, is_entry ? controller_entry_s : controller_exit_s); + + if (failsafe) { + fl_print_format("%r ", global->main->output.to.stream, controller_entry_print_failsafe_s); + } + + fl_print_format("%r item '%[%Q%]'.%r", global->main->output.to.stream, is_entry ? controller_entry_s : controller_exit_s, global->main->context.set.title, cache->action.name_item, global->main->context.set.title, f_string_eol_s); controller_unlock_print_flush(global->main->output.to, global->thread); }