From 9bd517d12a80a901cef6e165ba77d0fb6a43acc6 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 6 May 2022 19:03:17 -0500 Subject: [PATCH] Cleanup: Add additional spaces to controller program --help. This fixes alignment/tabbing issues. --- level_3/controller/c/controller.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_3/controller/c/controller.c b/level_3/controller/c/controller.c index 69b25cc..bb422a4 100644 --- a/level_3/controller/c/controller.c +++ b/level_3/controller/c/controller.c @@ -69,9 +69,9 @@ extern "C" { const f_string_static_t interruptable = main->as_init ? controller_long_uninterruptible_s : controller_long_interruptible_s; - fl_print_format(" The default interrupt behavior is to operate as if the %[%r%r%] parameter is passed.%r%r", main->output.to.stream, main->context.set.notable, f_console_symbol_long_enable_s, interruptable, main->context.set.notable, f_string_eol_s, f_string_eol_s); + fl_print_format(" The default interrupt behavior is to operate as if the %[%r%r%] parameter is passed.%r%r", main->output.to.stream, main->context.set.notable, f_console_symbol_long_enable_s, interruptable, main->context.set.notable, f_string_eol_s, f_string_eol_s); - fl_print_format(" Specify an empty string for the %[%r%r%] parameter to disable pid file creation for this program.%r%r", main->output.to.stream, main->context.set.notable, f_console_symbol_long_enable_s, controller_long_pid_s, main->context.set.notable, f_string_eol_s, f_string_eol_s); + fl_print_format(" Specify an empty string for the %[%r%r%] parameter to disable pid file creation for this program.%r%r", main->output.to.stream, main->context.set.notable, f_console_symbol_long_enable_s, controller_long_pid_s, main->context.set.notable, f_string_eol_s, f_string_eol_s); controller_unlock_print_flush(main->output.to, 0); -- 1.8.3.1