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

Comparing ray/src/rt/rpict.c (file contents):
Revision 1.16 by greg, Tue Jan 16 11:30:09 1990 UTC vs.
Revision 1.17 by greg, Fri Jan 19 00:00:19 1990 UTC

# Line 167 | Line 167 | char  *zfile, *oldfile;
167                  fillscanbar(scanbar, zbar, hresolu, ypos, ystep);
168                                                          /* write it out */
169                  for (i = ystep; i > 0; i--) {
170 <                        if (zfd!=-1 && write(zfd,zbar[i],hresolu*sizeof(float))
170 >                        if (zfd != -1 && write(zfd, (char *)zbar[i],
171 >                                        hresolu*sizeof(float))
172                                          < hresolu*sizeof(float))
173                                  goto writerr;
174 <                        if (fwritescan(scanbar[i],hresolu,stdout) < 0)
174 >                        if (fwritescan(scanbar[i], hresolu, stdout) < 0)
175                                  goto writerr;
176                  }
177                  if (fflush(stdout) == EOF)
# Line 178 | Line 179 | char  *zfile, *oldfile;
179          }
180                                                  /* clean up */
181          if (zfd != -1) {
182 <                if (write(zfd,zbar[0],hresolu*sizeof(float))
182 >                if (write(zfd, (char *)zbar[0], hresolu*sizeof(float))
183                                  < hresolu*sizeof(float))
184                          goto writerr;
185                  close(zfd);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines