From: Kevin Day Date: Thu, 6 Apr 2023 01:33:21 +0000 (-0500) Subject: Bugfix: Add missing new line. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=ab882fa578519c8a1a16ed39e6818f4d745c4370;p=fll Bugfix: Add missing new line. --- 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.");