--- ray/src/common/standard.h 2003/03/27 04:16:33 2.20 +++ ray/src/common/standard.h 2003/03/27 16:33:39 2.21 @@ -1,4 +1,4 @@ -/* RCSid $Id: standard.h,v 2.20 2003/03/27 04:16:33 greg Exp $ */ +/* RCSid $Id: standard.h,v 2.21 2003/03/27 16:33:39 greg Exp $ */ /* * Miscellaneous definitions required by many routines. */ @@ -87,7 +87,7 @@ extern double tcos(); /* table-based cosine approxim #define ttan(x) (tsin(x)/tcos(x)) #endif /* custom version of assert(3) */ -#define CHECK(be,et,em) if (be) error(et,em) else +#define CHECK(be,et,em) if (be) error(et,em); else #ifdef DEBUG #define DCHECK CHECK #else