Browse Source

Retire redundant variable

master
Arun Prakash Jana 6 years ago
parent
commit
106c7c2371
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      nnn.c

+ 2
- 5
nnn.c View File

@@ -917,10 +917,7 @@ filterentries(char *path)
static char ln[REGEX_MAX];
static wchar_t wln[REGEX_MAX];
static wint_t ch[2] = {0};
static int maxlen = REGEX_MAX - 1;
int r, total = ndents;
int oldcur = cur;
int len = 1;
int r, total = ndents, oldcur = cur, len = 1;
char *pln = ln + 1;

ln[0] = wln[0] = FILTER;
@@ -976,7 +973,7 @@ filterentries(char *path)
if (len == 1)
cur = 0;

if (len == maxlen)
if (len == REGEX_MAX - 1)
break;

wln[len] = (wchar_t)*ch;


Loading…
Cancel
Save