Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4410)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4411)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.155 2005-06-28 21:22:27 price Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.156 2005-06-28 21:31:24 price Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -744,5 +744,5 @@
   \code{PS_MEM_LIMIT}.
 \item \code{psVector} and \code{psImage} functions \code{-Alloc},
-  \code{-Realloc} and \code{-Recycle} changed to signed.
+  \code{-Realloc} and \code{-Recycle} changed to signed \code{int}.
 \item \code{nFail} in \code{psMetadataConfigParse} is \code{unsigned}.
 \item \code{timeval} changed to \code{struct timeval} throughout.
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 4410)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 4411)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.303 2005-06-28 21:22:27 price Exp $
+%%% $Id: psLibSDRS.tex,v 1.304 2005-06-28 21:31:24 price Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -3151,9 +3151,8 @@
 typedef struct psImage {
     psMathType type;                    ///< image data type and dimension
-    const psS32 numCols;                ///< Number of columns in image
-    const psS32 numRows;                ///< Number of rows in image.
-    const psS32 col0;                   ///< Column position relative to parent.
-    const psS32 row0;                   ///< Row position relative to parent.
-
+    const int numCols;                  ///< Number of columns in image
+    const int numRows;                  ///< Number of rows in image.
+    const int col0;                     ///< Column position relative to parent.
+    const int row0;                     ///< Row position relative to parent.
     union {
         psS8  **S8;                     ///< Pointers to char data
@@ -3203,5 +3202,5 @@
 
 \begin{prototype}
-psImage *psImageAlloc(psS32 numCols, psS32 numRows, psElemType type);
+psImage *psImageAlloc(int numCols, int numRows, psElemType type);
 \end{prototype}
 Create an image of a specified \code{numCols}, \code{numRows}, and data
@@ -3213,7 +3212,7 @@
 psImage* psImageRecycle(
     psImage* old,                       ///< the psImage to recycle by resizing image buffer
-    psS32 numCols,                      ///< the desired number of columns in image
-    psS32 numRows,                      ///< the desired number of rows in image
-    const psElemType type           ///< the desired datatype of the image
+    int numCols,                        ///< the desired number of columns in image
+    int numRows,                        ///< the desired number of rows in image
+    const psElemType type               ///< the desired datatype of the image
 );
 \end{prototype}
