--- ray/src/rt/func.c 1991/11/25 09:51:00 2.2 +++ ray/src/rt/func.c 1992/01/04 19:53:25 2.4 @@ -1,4 +1,4 @@ -/* Copyright (c) 1991 Regents of the University of California */ +/* Copyright (c) 1992 Regents of the University of California */ #ifndef lint static char SCCSid[] = "$SunId$ LBL"; @@ -111,14 +111,14 @@ int dofwd; f->f = f->b = &unitxf; else { /* get transform */ if ((f->b = (XF *)malloc(sizeof(XF))) == NULL) - goto memerr;; + goto memerr; if (invxf(f->b, na-i, arg+i) != na-i) objerror(m, USER, "bad transform"); if (f->b->sca < 0.0) f->b->sca = -f->b->sca; if (dofwd) { /* do both transforms */ if ((f->f = (XF *)malloc(sizeof(XF))) == NULL) - goto memerr;; + goto memerr; xf(f->f, na-i, arg+i); if (f->f->sca < 0.0) f->f->sca = -f->f->sca; @@ -127,7 +127,7 @@ int dofwd; m->os = (char *)f; return(f); toofew: - objerror(m, USER, "too few arguments"); + objerror(m, USER, "too few string arguments"); memerr: error(SYSTEM, "out of memory in getfunc"); }