From: Kevin Day Date: Fri, 4 Mar 2022 02:24:35 +0000 (-0600) Subject: Regression: UTF8 program is throwing error when trying to read files. X-Git-Tag: 0.5.9~102 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=1a2d020574ecba447a0a627903d2c8e86ede22f7;p=fll Regression: UTF8 program is throwing error when trying to read files. --- diff --git a/level_3/utf8/c/utf8.c b/level_3/utf8/c/utf8.c index f076cd2..4799c04 100644 --- a/level_3/utf8/c/utf8.c +++ b/level_3/utf8/c/utf8.c @@ -298,7 +298,7 @@ extern "C" { index = main->parameters.array[utf8_parameter_from_file_e].values.array[i]; - if (!data.argv[index].used) { + if (data.argv[index].used) { if (!f_file_exists(data.argv[index])) { utf8_print_error_parameter_file_not_found(&data, F_true, data.argv[index]);