diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/glob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/glob.c b/Src/glob.c index 46fef88ea..fb15a4efc 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -1435,7 +1435,7 @@ glob(LinkList list, LinkNode np, int nountok) end += matchct + 1; else if (end > matchct) end = matchct; - if (end -= first > 0) { + if ((end -= first) > 0) { matchptr = matchbuf + matchct - first - end; while (end-- > 0) { /* insert matches in the arg list */ insertlinknode(list, node, matchptr->name); |