Index: trunk/psLib/src/astro/psCoord.h
===================================================================
--- trunk/psLib/src/astro/psCoord.h	(revision 4876)
+++ trunk/psLib/src/astro/psCoord.h	(revision 4877)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-07-27 19:55:15 $
+*  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-08-25 23:42:01 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -162,10 +162,4 @@
 psCube* psCubeAlloc(void);
 
-/** Allocates a psCube
- *
- *  @return psCube*       resulting cube structure.
- */
-psCube* psCubeAlloc(void);
-
 /** Allocates a psPlaneTransform transform.
  *
Index: trunk/psLib/src/psErrorText.h.in
===================================================================
--- trunk/psLib/src/psErrorText.h.in	(revision 4876)
+++ trunk/psLib/src/psErrorText.h.in	(revision 4877)
@@ -7,9 +7,11 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-07-12 19:12:00 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-08-25 23:41:59 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  */
+
+/* !!! DO NOT EDIT psErrorText.h!  Add error messages to the cooresponding .dat file !!! */
 
 #ifndef PS_ERROR_TEXT_H
Index: trunk/psLib/src/sys/psMemory.c
===================================================================
--- trunk/psLib/src/sys/psMemory.c	(revision 4876)
+++ trunk/psLib/src/sys/psMemory.c	(revision 4877)
@@ -8,6 +8,6 @@
 *  @author Robert Lupton, Princeton University
 *
-*  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-07-21 01:40:10 $
+*  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-08-25 23:42:07 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -109,5 +109,5 @@
         psError(PS_ERR_MEMORY_CORRUPTION, false,
                 PS_ERRORTEXT_psMemory_MULTIPLE_FREE,
-                ptr->id, ptr->file, ptr->lineno, file, lineno);
+                (unsigned long)ptr->id, ptr->file, ptr->lineno, file, lineno);
     }
 
@@ -138,5 +138,5 @@
         psError(PS_ERR_MEMORY_CORRUPTION, true,
                 PS_ERRORTEXT_psMemory_DEREF_BLOCK_USE,
-                m->id);
+                (unsigned long)m->id);
         return 1;
     }
@@ -145,5 +145,5 @@
         psError(PS_ERR_MEMORY_CORRUPTION, true,
                 PS_ERRORTEXT_psMemory_UNDERFLOW,
-                m->id);
+                (unsigned long)m->id);
         return 1;
     }
@@ -151,5 +151,5 @@
         psError(PS_ERR_MEMORY_CORRUPTION, true,
                 PS_ERRORTEXT_psMemory_OVERFLOW,
-                m->id);
+                (unsigned long)m->id);
         return 1;
     }
@@ -390,6 +390,6 @@
         if (checkMemBlock(ptr, __func__) != 0) {
             memProblemCallback(ptr, file, lineno);
-            psAbort(file, "Realloc detected a memory corruption (id %lld @ %s:%d).",
-                    ptr->id, ptr->file, ptr->lineno);
+            psAbort(file, "Realloc detected a memory corruption (id %lu @ %s:%d).",
+                    (unsigned long)ptr->id, ptr->file, ptr->lineno);
         }
 
@@ -444,5 +444,5 @@
 
         psAbort(__func__,PS_ERRORTEXT_psMemory_MULTIPLE_FREE,
-                ptr->id, ptr->file, ptr->lineno, filename, lineno);
+                (unsigned long)ptr->id, ptr->file, ptr->lineno, filename, lineno);
     }
 
@@ -481,5 +481,5 @@
                 }
 
-                fprintf(fd, "   %20s:%-4d %ld\n", iter->file, (int)iter->lineno, (long)iter->id);
+                fprintf(fd, "   %20s:%-4d %lu\n", iter->file, (int)iter->lineno, (unsigned long)iter->id);
             }
         }
