From 6842d6ecaf89230528c270d44039ba2566b9dde6 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 4 Jun 2024 19:57:57 -0500 Subject: [PATCH] Cleanup: Use proper closing context on print. The closing context now matches the opening context. The closing contexts are generally the same and so this is not a big deal. This would only be a problem if the values of contexts where changed in some significant way. --- level_3/controller/c/entry/private-entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/controller/c/entry/private-entry.c b/level_3/controller/c/entry/private-entry.c index d21511c..36b9de7 100644 --- a/level_3/controller/c/entry/private-entry.c +++ b/level_3/controller/c/entry/private-entry.c @@ -889,7 +889,7 @@ extern "C" { 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.notable, f_string_eol_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); controller_unlock_print_flush(global->main->output.to, global->thread); } -- 1.8.3.1