]> Kevux Git Server - fll/commitdiff
Cleanup: Use proper closing context on print.
authorKevin Day <Kevin@kevux.org>
Wed, 5 Jun 2024 00:57:57 +0000 (19:57 -0500)
committerKevin Day <Kevin@kevux.org>
Wed, 5 Jun 2024 00:57:57 +0000 (19:57 -0500)
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

index d21511cefc20d874abdd375413e9675ae31889d9..36b9de740d0ebfd2aceb31a4614456c4143643bf 100644 (file)
@@ -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);
       }