--- ray/src/util/ranimate.c 2006/04/18 04:30:35 2.52 +++ ray/src/util/ranimate.c 2016/03/06 01:13:18 2.56 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: ranimate.c,v 2.52 2006/04/18 04:30:35 greg Exp $"; +static const char RCSid[] = "$Id: ranimate.c,v 2.56 2016/03/06 01:13:18 schorsch Exp $"; #endif /* * Radiance animation control program @@ -416,9 +416,9 @@ setdefaults(void) /* set default values */ if (!vdef(DISKSPACE)) { if (!nowarn) fprintf(stderr, - "%s: warning - no %s setting, assuming 100 Mbytes available\n", + "%s: warning - no %s setting, assuming 1000 Mbytes available\n", progname, vnam(DISKSPACE)); - vval(DISKSPACE) = "100"; + vval(DISKSPACE) = "1000"; vdef(DISKSPACE)++; } if (!vdef(RSH)) { @@ -708,7 +708,7 @@ transferframes(void) /* catch up with picture transf *cp++ = ' '; sprintf(cp, fbase, i); while (*cp) cp++; - strcpy(cp, ".pic"); + strcpy(cp, ".hdr"); cp += 4; } if (runcom(combuf)) { /* transfer frames */ @@ -1061,7 +1061,7 @@ int rvr } /* output file name */ sprintf(fname0, vval(BASENAME), frame); - sprintf(combuf+strlen(combuf), " > %s.pic", fname0); + sprintf(combuf+strlen(combuf), " > %s.hdr", fname0); if (rvr) /* in recovery */ return(runcom(combuf)); bruncom(combuf, frame, frecover); /* else run in background */ @@ -1134,7 +1134,6 @@ countviews(void) /* count views in view file */ static char * getexp(int n) /* get exposure for nth frame */ { - extern char *fskip(); static char expval[32]; static FILE *expfp = NULL; static long *exppos; @@ -1413,7 +1412,7 @@ static int rmfile(char *fn) /* remove a file */ { if (!silent) -#ifdef _WIN32 +#if defined(_WIN32) || defined(_WIN64) printf("\tdel %s\n", fn); #else printf("\trm -f %s\n", fn);