Fix double order chars on filter case match change

This commit is contained in:
Arun Prakash Jana 2022-07-13 21:20:05 +05:30
parent 910763441d
commit db7cb4da1e
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -3152,7 +3152,7 @@ static void showfilterinfo(void)
if (cfg.fileinfo && ndents && get_output("file", "-b", pdents[cur].name, -1, FALSE, FALSE))
mvaddstr(xlines - 2, 2, g_buf);
else {
snprintf(info + i, REGEX_MAX - i - 1, " %s [/], %s [:]",
snprintf(info + i, REGEX_MAX - i - 1, " %s [/], %4s [:]",
(cfg.regex ? "reg" : "str"),
((fnstrstr == &strcasestr) ? "ic" : "noic"));
}