On Tue, Dec 20 2022, William Sprent via GitGitGadget wrote: > From: William Sprent <williams@xxxxxxxxxxx> > [...] > + if (!(given->flags & PATTERN_FLAG_MUSTBEDIR) && > + !!strcmp(given->pattern, "/*")) { Style: We use !! to convert 123 to 1 or whatever, but here we just care about "not matched", so we can drop this !!strcmp() for strcmp().