glob: Fix an overlong line
Trivial style(9) fix, no functional change. There are also some 81 characters lines below, but I don't see a good way to shorten them. Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
31da007f7e
commit
1365421f09
@ -936,7 +936,8 @@ match(Char *name, Char *pat, Char *patend)
|
||||
ok = 0;
|
||||
if ((k = *name++) == EOS)
|
||||
goto fail;
|
||||
if ((negate_range = ((*pat & M_MASK) == M_NOT)) != 0)
|
||||
negate_range = ((*pat & M_MASK) == M_NOT);
|
||||
if (negate_range != 0)
|
||||
++pat;
|
||||
while (((c = *pat++) & M_MASK) != M_END)
|
||||
if ((*pat & M_MASK) == M_RNG) {
|
||||
|
Loading…
Reference in New Issue
Block a user