ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/header.c
(Generate patch)

Comparing ray/src/common/header.c (file contents):
Revision 2.44 by greg, Sun Mar 6 16:27:55 2022 UTC vs.
Revision 2.45 by greg, Sun Mar 6 16:33:44 2022 UTC

# Line 370 | Line 370 | globmatch(                     /* check for match of s against pattern p
370                                  if (!*p)
371                                          return(0);
372                                  if (*p == '-') {
373 <                                        setmatch += (p[-1] <= *s && *s <= p[1]);
373 >                                        setmatch += (p[-1] <= *s) & (*s <= p[1]);
374                                          if (!*++p)
375                                                  break;
376                                  } else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines