--- ray/src/hd/clumpbeams.c 1998/11/10 18:05:41 3.2 +++ ray/src/hd/clumpbeams.c 2003/02/22 02:07:24 3.3 @@ -1,9 +1,6 @@ -/* Copyright (c) 1998 Silicon Graphics, Inc. */ - #ifndef lint -static char SCCSid[] = "$SunId$ SGI"; +static const char RCSid[] = "$Id: clumpbeams.c,v 3.3 2003/02/22 02:07:24 greg Exp $"; #endif - /* * Bundle holodeck beams together into clumps. */ @@ -156,6 +153,6 @@ int (*cf)(); (*cf)(hp, bqueue, bqlen); /* transfer clump */ } /* all done; clean up */ - free((char *)bqueue); - free((char *)bflags); + free((void *)bqueue); + free((void *)bflags); }