From ab882fa578519c8a1a16ed39e6818f4d745c4370 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 5 Apr 2023 20:33:21 -0500 Subject: [PATCH] Bugfix: Add missing new line. --- level_3/fake/c/main/print/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/fake/c/main/print/message.c b/level_3/fake/c/main/print/message.c index 19b3e67..d62fd7a 100644 --- a/level_3/fake/c/main/print/message.c +++ b/level_3/fake/c/main/print/message.c @@ -110,7 +110,7 @@ extern "C" { fll_program_print_help_option(print, fake_short_sources_s, fake_long_sources_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Specify a custom path to the source files."); fll_program_print_help_option(print, fake_short_work_s, fake_long_work_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Use includes/libraries/programs from this directory instead of system."); - fl_print_format("%r%r %[Special Options:%] ", print->to, f_string_eol_s, f_string_eol_s, print->set->important, print->set->important); + fl_print_format("%r%r %[Special Options:%]%r", print->to, f_string_eol_s, f_string_eol_s, print->set->important, print->set->important, f_string_eol_s); fll_program_print_help_option_long(print, fake_long_documents_disabled_s, f_console_symbol_long_normal_s, " Forcibly do not build documents files."); fll_program_print_help_option_long(print, fake_long_documents_enabled_s, f_console_symbol_long_normal_s, " Forcibly do build documents files."); -- 1.8.3.1