Index: trunk/psastro/src/psModUtils.c
===================================================================
--- trunk/psastro/src/psModUtils.c	(revision 5506)
+++ trunk/psastro/src/psModUtils.c	(revision 5560)
@@ -4,4 +4,5 @@
 
 // template sample alloc/free pair:
+# if (0)
 static void psFooFree (psFoo *foo) {
 
@@ -9,5 +10,4 @@
   return;
 }
-
 psFoo *psFooAlloc (int i1, int i2) {
 
@@ -17,4 +17,5 @@
   return (foo);
 }
+# endif
 
 // pmFPA
@@ -31,5 +32,5 @@
 }
 
-pmFPA *pmFPAAlloc (int i1, int i2) {
+pmFPA *pmFPAAlloc (void) {
 
   pmFPA *fpa = psAlloc (sizeof(pmFPA));
@@ -56,5 +57,5 @@
 }
 
-pmChip *pmChipAlloc (int i1, int i2) {
+pmChip *pmChipAlloc (void) {
 
   pmChip *chip = psAlloc (sizeof(pmChip));
@@ -79,5 +80,5 @@
 }
 
-pmCell *pmCellAlloc (int i1, int i2) {
+pmCell *pmCellAlloc (void) {
 
   pmCell *cell = psAlloc (sizeof(pmCell));
@@ -95,10 +96,10 @@
   if (readout == NULL) return;
 
-  psFree (readout->objects);
+  psFree (readout->stars);
 
   return;
 }
 
-pmReadout *pmReadoutAlloc (int i1, int i2) {
+pmReadout *pmReadoutAlloc (void) {
 
   pmReadout *readout = psAlloc (sizeof(pmReadout));
@@ -109,5 +110,5 @@
   readout->colBins = 1;
   readout->rowBins = 1;
-  readout->objects = NULL;
+  readout->stars = NULL;
 
   return (readout);
