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:
Conrad Meyer 2017-05-03 16:34:22 +00:00
parent 31da007f7e
commit 1365421f09

View File

@ -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) {