Retire redundant variable

This commit is contained in:
Arun Prakash Jana 2017-12-20 00:42:11 +05:30
parent d135af33af
commit 106c7c2371
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 5 deletions

7
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;