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

Comparing ray/src/hd/rhinfo.c (file contents):
Revision 3.4 by gwlarson, Wed Feb 3 10:48:06 1999 UTC vs.
Revision 3.6 by greg, Thu May 29 16:26:22 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1998 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Get general information on holodeck file
6   */
# Line 40 | Line 37 | gethdinfo(fname, fout)         /* get information on holodeck
37   char    *fname;
38   FILE    *fout;
39   {
43        extern long     ftell();
40          FILE    *fp;
41          HOLO    *hdsect;
42          int     fd;
# Line 60 | Line 56 | FILE   *fout;
56          nextloc = ftell(fp);                    /* get stdio position */
57          fclose(fp);                             /* done with stdio */
58          for (n = 0; nextloc > 0L; n++) {        /* get the section(s) */
59 <                lseek(fd, (long)nextloc, 0);
59 >                lseek(fd, (off_t)nextloc, 0);
60                  read(fd, (char *)&nextloc, sizeof(nextloc));
61                  fprintf(fout, "Section %d:\n", n);
62                  hdsect = hdinit(fd, NULL);      /* load section directory */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines