--- ray/src/util/ranimate.c 2003/02/25 02:47:24 2.31 +++ ray/src/util/ranimate.c 2003/05/27 15:30:04 2.34 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: ranimate.c,v 2.31 2003/02/25 02:47:24 greg Exp $"; +static const char RCSid[] = "$Id: ranimate.c,v 2.34 2003/05/27 15:30:04 greg Exp $"; #endif /* * Radiance animation control program @@ -721,8 +721,7 @@ char *vfn; close(open(combuf, O_RDONLY|O_CREAT, 0666)); } /* create command */ - sprintf(combuf, "rpict%s%s -w0", rendopt, - viewopt(getview(first>1 ? first-1 : 1))); + sprintf(combuf, "rpict%s -w0", rendopt); inspoint = combuf; while (*inspoint) inspoint++; if (nblur) { @@ -798,7 +797,7 @@ int frame; return(1); /* add frame to recovered list */ if (nrfrms) - rfrm = (int *)realloc((char *)rfrm, (nrfrms+1)*sizeof(int)); + rfrm = (int *)realloc((void *)rfrm, (nrfrms+1)*sizeof(int)); else rfrm = (int *)malloc(sizeof(int)); if (rfrm == NULL) { @@ -971,7 +970,7 @@ int rvr; if (usepfilt) sprintf(combuf+strlen(combuf), " %s", rresopt); else - sprintf(combuf+strlen(combuf), "-a %s -e %s", + sprintf(combuf+strlen(combuf), " -a %s -e %s", fresopt, ep); sprintf(combuf+strlen(combuf), " %s.unf %s.zbf", fnbefore, fnbefore);