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

Comparing ray/src/util/findglare.c (file contents):
Revision 2.8 by gregl, Mon Oct 20 16:35:30 1997 UTC vs.
Revision 2.9 by greg, Sat Feb 22 02:07:30 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Find glare sources in a scene or image.
6   *
# Line 56 | Line 53 | char   *argv[];
53                                          /* process options */
54          for (i = 1; i < argc && argv[i][0] == '-'; i++) {
55                                                  /* expand arguments */
56 <                while (rval = expandarg(&argc, &argv, i))
57 <                        if (rval < 0) {
58 <                                fprintf(stderr, "%s: cannot expand '%s'",
59 <                                                argv[0], argv[i]);
60 <                                exit(1);
61 <                        }
56 >                while ((rval = expandarg(&argc, &argv, i)) > 0)
57 >                        ;
58 >                if (rval < 0) {
59 >                        fprintf(stderr, "%s: cannot expand '%s'",
60 >                                        argv[0], argv[i]);
61 >                        exit(1);
62 >                }
63                  rval = getviewopt(&ourview, argc-i, argv+i);
64                  if (rval >= 0) {
65                          i += rval;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines