grep: fix ARGC()

This commit is contained in:
Connor Lane Smith 2012-06-09 18:49:02 +01:00
parent c2c5ea9c60
commit c68bba6867
1 changed files with 1 additions and 2 deletions

3
grep.c
View File

@ -21,7 +21,6 @@ static char mode = 0;
int
main(int argc, char *argv[])
{
char c;
int i, n, flags = REG_NOSUB;
regex_t preg;
FILE *fp;
@ -34,7 +33,7 @@ main(int argc, char *argv[])
case 'l':
case 'n':
case 'q':
mode = c;
mode = ARGC();
break;
case 'i':
flags |= REG_ICASE;