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

Comparing ray/src/util/rpiece.c (file contents):
Revision 2.41 by schorsch, Sun Jul 27 22:12:04 2003 UTC vs.
Revision 2.42 by greg, Mon Oct 20 16:01:55 2003 UTC

# Line 5 | Line 5 | static const char      RCSid[] = "$Id$";
5   * Generate sections of a picture.
6   */
7  
8 + #include "platform.h"
9   #include "standard.h"
10  
11   #ifndef F_SETLKW
# Line 505 | Line 506 | int  xpos, ypos;
506                  filerr("lock");
507   #endif
508                                  /* write new piece to file */
509 <        if (lseek(outfd, (off_t)fls.l_start, 0) < 0)
509 >        if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
510                  filerr("seek");
511          if (hmult == 1) {
512                  if (writebuf(outfd, (char *)pbuf,
# Line 518 | Line 519 | int  xpos, ypos;
519                                  filerr("write");
520                          if (y < vr-1 && lseek(outfd,
521                                          (off_t)(hmult-1)*hr*sizeof(COLR),
522 <                                        1) < 0)
522 >                                        SEEK_CUR) < 0)
523                                  filerr("seek");
524                  }
525   #if NFS

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines