bsdgrep(1): whoops, garbage collect the now write-only variable

This commit is contained in:
Kyle Evans 2018-06-07 18:36:12 +00:00
parent cbfff13fa2
commit 40f0e0b100
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334807

View File

@ -144,11 +144,11 @@ grep_tree(char **argv)
{
FTS *fts;
FTSENT *p;
int c, fts_flags;
int fts_flags;
bool matched, ok;
const char *wd[] = { ".", NULL };
c = fts_flags = 0;
fts_flags = 0;
matched = false;
switch(linkbehave) {