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

Comparing ray/src/common/savqstr.c (file contents):
Revision 2.7 by schorsch, Thu Jul 17 09:21:29 2003 UTC vs.
Revision 2.8 by schorsch, Sun Jul 27 22:12:01 2003 UTC

# Line 30 | Line 30 | register char  *s;
30                  eputs("out of memory in savqstr");
31                  quit(1);
32          }
33 <        for (cp = newp; *cp++ = *s++; )         /* inline strcpy() */
33 >        for (cp = newp; (*cp++ = *s++); )               /* inline strcpy() */
34                  ;
35          return(newp);                           /* return new location */
36   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines