From: Kevin Day Date: Sat, 8 Jun 2024 04:23:34 +0000 (-0500) Subject: Bugfix: The '$' should instead be a '%' in the fl_print_format() call. X-Git-Tag: 0.6.11~48 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=4658054391daff064f3e1f88fff350e9a325b6ee;p=fll Bugfix: The '$' should instead be a '%' in the fl_print_format() call. --- diff --git a/level_3/controller/c/entry/private-entry.c b/level_3/controller/c/entry/private-entry.c index 6e94494..452cb27 100644 --- a/level_3/controller/c/entry/private-entry.c +++ b/level_3/controller/c/entry/private-entry.c @@ -1367,7 +1367,7 @@ extern "C" { fl_print_format("%r%[%QExecution failed with return value of '%]", global->main->error.to.stream, f_string_eol_s, global->main->error.context, global->main->error.prefix, global->main->error.context); fl_print_format("%[%i%]", global->main->error.to.stream, global->main->error.notable, result, global->main->error.notable); - fl_print_format("$['.%]%r", global->main->error.to.stream, global->main->error.context, global->main->error.context, f_string_eol_s); + fl_print_format("%['.%]%r", global->main->error.to.stream, global->main->error.context, global->main->error.context, f_string_eol_s); controller_entry_print_error_cache(is_entry, global->main->error, cache->action);