Index: trunk/psLib/src/sys/psMemory.h
===================================================================
--- trunk/psLib/src/sys/psMemory.h	(revision 4397)
+++ trunk/psLib/src/sys/psMemory.h	(revision 4401)
@@ -12,6 +12,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-25 03:32:42 $
+ *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-27 20:38:12 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -67,12 +67,12 @@
     struct psMemBlock* previousBlock;  ///< previous block in allocation list
     struct psMemBlock* nextBlock;      ///< next block allocation list
-    psFreeFunc freeFcn;                 ///< deallocator.  If NULL, use generic deallocation.
+    psFreeFunc freeFunc;               ///< deallocator.  If NULL, use generic deallocation.
     size_t userMemorySize;             ///< the size of the user-portion of the memory block
-    const psMemId id;               ///< a unique ID for this allocation
+    const psMemId id;                  ///< a unique ID for this allocation
     const char *file;                  ///< set from __FILE__ in e.g. p_psAlloc
-    const psS32 lineno;                  ///< set from __LINE__ in e.g. p_psAlloc
+    const psS32 lineno;                ///< set from __LINE__ in e.g. p_psAlloc
     pthread_mutex_t refCounterMutex;   ///< mutex to ensure exclusive access to reference counter
     psReferenceCount refCounter;       ///< how many times pointer is referenced
-    psBool persistent;                   ///< marks if this non-user persistent data like error stack, etc.
+    psBool persistent;                 ///< marks if this non-user persistent data like error stack, etc.
     const psPtr endblock;              ///< initialised to p_psMEMMAGIC
 }
@@ -152,5 +152,5 @@
 void psMemSetDeallocator(
     psPtr ptr,                         ///< the memory block to operate on
-    psFreeFunc freeFcn                  ///< the function to be executed at deallocation
+    psFreeFunc freeFunc                ///< the function to be executed at deallocation
 );
 
