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

Comparing ray/src/common/image.c (file contents):
Revision 2.20 by greg, Fri Aug 29 23:03:13 2003 UTC vs.
Revision 2.22 by schorsch, Fri Nov 14 17:22:06 2003 UTC

# Line 9 | Line 9 | static const char      RCSid[] = "$Id$";
9  
10   #include "copyright.h"
11  
12 < #include  "standard.h"
13 <
12 > #include  "rtio.h"
13   #include  "view.h"
14  
16 #include  "paths.h"
15  
16   #define  FEQ(x,y)       (fabs((x)-(y)) <= FTINY)
17   #define  VEQ(v,w)       (FEQ((v)[0],(w)[0]) && FEQ((v)[1],(w)[1]) \
# Line 401 | Line 399 | register char  *s;
399          while (*s) {
400                  ac = 0;
401                  do {
402 <                        av[ac++] = s;
402 >                        if (ac || *s == '-')
403 >                                av[ac++] = s;
404                          while (*s && *s != ' ')
405                                  s++;
406                          while (*s == ' ')

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines